Update app.py
Browse files
app.py
CHANGED
|
@@ -39,8 +39,8 @@ def emotion_analysis(emotions):
|
|
| 39 |
|
| 40 |
def predict_image(pic):
|
| 41 |
#img = image.load_img(pic, grayscale=True, target_size=(48, 48))
|
| 42 |
-
show_img=image.load_img(pic, grayscale=False, target_size=(200, 200))
|
| 43 |
-
x = image.img_to_array(
|
| 44 |
x = np.expand_dims(x, axis = 0)
|
| 45 |
|
| 46 |
x /= 255
|
|
|
|
| 39 |
|
| 40 |
def predict_image(pic):
|
| 41 |
#img = image.load_img(pic, grayscale=True, target_size=(48, 48))
|
| 42 |
+
#show_img=image.load_img(pic, grayscale=False, target_size=(200, 200))
|
| 43 |
+
x = image.img_to_array(pic)
|
| 44 |
x = np.expand_dims(x, axis = 0)
|
| 45 |
|
| 46 |
x /= 255
|