Browse Source

Cleaned image_cleaner so it doesn't output image size

david 5 năm trước cách đây
mục cha
commit
6c8e76b30a
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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 = ""