diff --git a/README.md b/README.md index 4e461b9..bff49c9 100644 --- a/README.md +++ b/README.md @@ -2,4 +2,4 @@ Collection of useful scripts for image manipulation for dataset/ML usage ## Image Resizer -Resize a set of images to a given resolution (default: 640x640px) and save them separately. \ No newline at end of file +Resize a set of images to a given resolution (default: 640x640px) and save them separately. diff --git a/src/img-resizer/img-resizer.py b/src/img-resizer/img-resizer.py index b9d8306..402a81b 100644 --- a/src/img-resizer/img-resizer.py +++ b/src/img-resizer/img-resizer.py @@ -15,4 +15,4 @@ for filename in os.listdir(inputFolder): img_res = cv2.resize(img_org, resolution) cv2.imwrite(os.path.join(outputFolder, filename), img_res) else: - continue \ No newline at end of file + continue