MohamedSherif commited on
Commit
c24222d
1 Parent(s): 2748758

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ class SkinCancer :
31
  return model
32
 
33
  def preprocess_image(self,img):
34
- img = cv2.resize(img, (64,64))
35
  img = img.reshape(1,64,64,3)
36
  return img
37
 
 
31
  return model
32
 
33
  def preprocess_image(self,img):
34
+ img = resize(img, (64,64))
35
  img = img.reshape(1,64,64,3)
36
  return img
37