소스 검색

Vreemde tweede resize functie verwijderd

Gijs van der Voort 14 년 전
부모
커밋
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)