Spaces:
Running
Running
Update demo.py
Browse files
demo.py
CHANGED
@@ -72,33 +72,27 @@ def compare_face(frame1, frame2):
|
|
72 |
face1_idx = result.get('face1')
|
73 |
face2_idx = result.get('face2')
|
74 |
|
75 |
-
|
76 |
-
|
77 |
|
78 |
-
|
79 |
-
|
80 |
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
|
85 |
-
# item_value = ('<div style="align-items: center; gap: 10px; display: flex; flex-direction: column;">'
|
86 |
-
# '<div style="display: flex; align-items: center; gap: 20px;">'
|
87 |
-
# '{face_value1}'
|
88 |
-
# '{match_icon}'
|
89 |
-
# '{face_value2}'
|
90 |
-
# '</div>'
|
91 |
-
# '<div style="text-align: center; margin-top: 10px;">'
|
92 |
-
# 'Similarity: {similarity}'
|
93 |
-
# '</div>'
|
94 |
-
# '</div>'
|
95 |
-
# ).format(face_value1=face_value1, face_value2=face_value2, match_icon=match_icon, similarity=f"{similarity:.2f}")
|
96 |
item_value = ('<div style="align-items: center; gap: 10px; display: flex; flex-direction: column;">'
|
|
|
|
|
|
|
|
|
|
|
97 |
'<div style="text-align: center; margin-top: 10px;">'
|
98 |
'Similarity: {similarity}'
|
99 |
'</div>'
|
100 |
'</div>'
|
101 |
-
).format(similarity=f"{similarity:.2f}")
|
102 |
|
103 |
html += item_value
|
104 |
html += '<hr style="border: 1px solid #C0C0C0; margin: 10px 0;"/>'
|
|
|
72 |
face1_idx = result.get('face1')
|
73 |
face2_idx = result.get('face2')
|
74 |
|
75 |
+
face_image1 = face_crop(image1, faces1[face1_idx])
|
76 |
+
face_value1 = ('<img src="data:image/png;base64,{base64_image}" style="width: 100px; height: auto; object-fit: contain;"/>').format(base64_image=pil_image_to_base64(face_image1, format="PNG"))
|
77 |
|
78 |
+
face_image2 = face_crop(image2, faces2[face2_idx])
|
79 |
+
face_value2 = ('<img src="data:image/png;base64,{base64_image}" style="width: 100px; height: auto; object-fit: contain;"/>').format(base64_image=pil_image_to_base64(face_image2, format="PNG"))
|
80 |
|
81 |
+
match_icon = '<svg fill="red" width="19" height="32" viewBox="0 0 19 32"><path d="M0 13.92V10.2H19V13.92H0ZM0 21.64V17.92H19V21.64H0Z"></path><path d="M14.08 0H18.08L5.08 32H1.08L14.08 0Z"></path></svg>'
|
82 |
+
if similarity > 0.67:
|
83 |
+
match_icon = '<svg fill="green" width="19" height="32" viewBox="0 0 19 32"><path d="M0 13.9202V10.2002H19V13.9202H0ZM0 21.6402V17.9202H19V21.6402H0Z"></path></svg>'
|
84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
item_value = ('<div style="align-items: center; gap: 10px; display: flex; flex-direction: column;">'
|
86 |
+
'<div style="display: flex; align-items: center; gap: 20px;">'
|
87 |
+
'{face_value1}'
|
88 |
+
'{match_icon}'
|
89 |
+
'{face_value2}'
|
90 |
+
'</div>'
|
91 |
'<div style="text-align: center; margin-top: 10px;">'
|
92 |
'Similarity: {similarity}'
|
93 |
'</div>'
|
94 |
'</div>'
|
95 |
+
).format(face_value1=face_value1, face_value2=face_value2, match_icon=match_icon, similarity=f"{similarity:.2f}")
|
96 |
|
97 |
html += item_value
|
98 |
html += '<hr style="border: 1px solid #C0C0C0; margin: 10px 0;"/>'
|