Переглянути джерело

Cleaned image_cleaner so it doesn't output image size

david 5 роки тому
батько
коміт
6c8e76b30a
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      dataLoad.py

+ 1 - 1
dataLoad.py

@@ -225,7 +225,7 @@ def image_cleaner(source, destination):
     image = Image.open(source)
     # pixels = image.load()
     size = image.size
-    print(f"Size: {size[0]} x {size[1]}")
+    #print(f"Size: {size[0]} x {size[1]}")
 
     for y in range(0, size[1]):
         s = ""