Просмотр исходного кода

Vreemde tweede resize functie verwijderd

Gijs van der Voort 14 лет назад
Родитель
Сommit
cce4f7e324
1 измененных файлов с 0 добавлено и 4 удалено
  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)