Graduate

Update interpolation method

...@@ -29,7 +29,7 @@ sess = tf.compat.v1.Session() ...@@ -29,7 +29,7 @@ sess = tf.compat.v1.Session()
29 29
30 30
31 def resize(image): 31 def resize(image):
32 - resized = cv2.resize(image, (image_size, image_size), interpolation=cv2.INTER_CUBIC) 32 + resized = cv2.resize(image, (image_size, image_size), interpolation=cv2.INTER_AREA)
33 return resized 33 return resized
34 34
35 def prewhiten(x): 35 def prewhiten(x):
......