Przeglądaj źródła

Vreemde tweede resize functie verwijderd

Gijs van der Voort 14 lat temu
rodzic
commit
cce4f7e324
1 zmienionych plików z 0 dodań i 4 usunięć
  1. 0 4
      src/GrayscaleImage.py

+ 0 - 4
src/GrayscaleImage.py

@@ -51,10 +51,6 @@ class GrayscaleImage:
     def make_histogram(self):
         return hist(self.data)
         
-    # size is of type tuple of integers (DEFAULT = (50, 50))
-    def resize(self, size):
-        print size
-        
     def resize(self, size): # size is of type float
         self.data = imresize(self.data, size)