Spaces:
Runtime error
Runtime error
Shafeek Saleem
commited on
Commit
·
c8dbc56
1
Parent(s):
defbd84
bug fixed
Browse files- pages/4_Trying It Out.py +1 -1
- utils/inference.py +1 -2
pages/4_Trying It Out.py
CHANGED
@@ -32,7 +32,7 @@ def step4_page():
|
|
32 |
st.info("Select your input type to analyze!")
|
33 |
input_type = st.radio("Select the Input Type", ["Image upload", "Camera"])
|
34 |
# Put slide to adjust tolerance
|
35 |
-
tolerance = st.slider("Tolerance", 0.0, 1.0, 0.
|
36 |
st.info(
|
37 |
"Tolerance is the threshold for face recognition. The lower the tolerance, the more strict the face recognition. The higher the tolerance, the more loose the face recognition.")
|
38 |
|
|
|
32 |
st.info("Select your input type to analyze!")
|
33 |
input_type = st.radio("Select the Input Type", ["Image upload", "Camera"])
|
34 |
# Put slide to adjust tolerance
|
35 |
+
tolerance = st.slider("Tolerance", 0.0, 1.0, 0.15, 0.01)
|
36 |
st.info(
|
37 |
"Tolerance is the threshold for face recognition. The lower the tolerance, the more strict the face recognition. The higher the tolerance, the more loose the face recognition.")
|
38 |
|
utils/inference.py
CHANGED
@@ -18,8 +18,6 @@ def recognize(image,tolerance):
|
|
18 |
for (top,right,bottom,left), face_encoding in zip(face_locations,face_encodings):
|
19 |
matches = face_recognition.compare_faces(known_encoding,face_encoding,tolerance=tolerance)
|
20 |
distance = face_recognition.face_distance(known_encoding,face_encoding)
|
21 |
-
st.write(matches)
|
22 |
-
st.write(distance)
|
23 |
name = 'Unknown'
|
24 |
face_id = 'Unknown'
|
25 |
for i in range(len(matches)):
|
@@ -29,6 +27,7 @@ def recognize(image,tolerance):
|
|
29 |
face_id = database[match_index]['face_id'].split("_")[1]
|
30 |
distance = round(np.sum(distance[match_index]),2)
|
31 |
cv2.putText(image,str(distance),(left,top-30),cv2.FONT_HERSHEY_SIMPLEX,0.75,(0,255,0),2)
|
|
|
32 |
cv2.rectangle(image,(left,top),(right,bottom),(0,255,0),2)
|
33 |
cv2.putText(image,name,(left,top-10),cv2.FONT_HERSHEY_SIMPLEX,0.75,(0,255,0),2)
|
34 |
return image, name, face_id
|
|
|
18 |
for (top,right,bottom,left), face_encoding in zip(face_locations,face_encodings):
|
19 |
matches = face_recognition.compare_faces(known_encoding,face_encoding,tolerance=tolerance)
|
20 |
distance = face_recognition.face_distance(known_encoding,face_encoding)
|
|
|
|
|
21 |
name = 'Unknown'
|
22 |
face_id = 'Unknown'
|
23 |
for i in range(len(matches)):
|
|
|
27 |
face_id = database[match_index]['face_id'].split("_")[1]
|
28 |
distance = round(np.sum(distance[match_index]),2)
|
29 |
cv2.putText(image,str(distance),(left,top-30),cv2.FONT_HERSHEY_SIMPLEX,0.75,(0,255,0),2)
|
30 |
+
break
|
31 |
cv2.rectangle(image,(left,top),(right,bottom),(0,255,0),2)
|
32 |
cv2.putText(image,name,(left,top-10),cv2.FONT_HERSHEY_SIMPLEX,0.75,(0,255,0),2)
|
33 |
return image, name, face_id
|