Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -24,6 +24,20 @@ def check_for_smile(face_landmarks):
|
|
24 |
return False
|
25 |
|
26 |
# Display emotion with post-processing to check for smiles
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
def display_emotion_with_smile(emotion, face_landmarks=None):
|
28 |
if emotion == 6 and face_landmarks: # 'Neutral' is typically 6 in the emotion_map
|
29 |
if check_for_smile(face_landmarks):
|
|
|
24 |
return False
|
25 |
|
26 |
# Display emotion with post-processing to check for smiles
|
27 |
+
def display_emotion(emotion):
|
28 |
+
"""Map predicted emotion index to a label"""
|
29 |
+
emotion_map = {
|
30 |
+
0: "Anger",
|
31 |
+
1: "Disgust",
|
32 |
+
2: "Fear",
|
33 |
+
3: "Happiness",
|
34 |
+
4: "Sadness",
|
35 |
+
5: "Surprise",
|
36 |
+
6: "Neutral"
|
37 |
+
}
|
38 |
+
return emotion_map.get(emotion, "Unknown")
|
39 |
+
|
40 |
+
# Display emotion with smile detection
|
41 |
def display_emotion_with_smile(emotion, face_landmarks=None):
|
42 |
if emotion == 6 and face_landmarks: # 'Neutral' is typically 6 in the emotion_map
|
43 |
if check_for_smile(face_landmarks):
|