Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -52,47 +52,49 @@ if file_name is not None:
|
|
52 |
|
53 |
imgS = cv2.resize(image, (0, 0), None, 0.25, 0.25)
|
54 |
imgS = cv2.cvtColor(imgS, cv2.COLOR_BGR2RGB)
|
55 |
-
facesCurFrame
|
56 |
-
|
57 |
-
|
58 |
# List to store recognized names for all faces in the image
|
59 |
recognized_names = []
|
60 |
|
61 |
-
#
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
matches = face_recognition.compare_faces(encodeListknown, encodeFace)
|
66 |
-
faceDis = face_recognition.face_distance(encodeListknown, encodeFace)
|
67 |
-
|
68 |
-
# Initialize name as Unknown
|
69 |
-
name = "Unknown"
|
70 |
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
|
|
78 |
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
|
90 |
-
|
91 |
-
|
92 |
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
else:
|
98 |
st.warning("No faces detected in the image. Face recognition failed.")
|
|
|
52 |
|
53 |
imgS = cv2.resize(image, (0, 0), None, 0.25, 0.25)
|
54 |
imgS = cv2.cvtColor(imgS, cv2.COLOR_BGR2RGB)
|
55 |
+
facesCurFrame = face_recognition.face_locations(imgS)
|
56 |
+
|
|
|
57 |
# List to store recognized names for all faces in the image
|
58 |
recognized_names = []
|
59 |
|
60 |
+
# Iterate over each face location
|
61 |
+
for faceLoc in facesCurFrame:
|
62 |
+
# Extract the coordinates of the face location
|
63 |
+
top, right, bottom, left = faceLoc
|
|
|
|
|
|
|
|
|
|
|
64 |
|
65 |
+
# Crop the face region from the image
|
66 |
+
face_img = imgS[top:bottom, left:right]
|
67 |
+
|
68 |
+
# Encode the face
|
69 |
+
face_encoding = face_recognition.face_encodings(face_img)[0]
|
70 |
+
|
71 |
+
# Compare the face encoding with known face encodings
|
72 |
+
matches = face_recognition.compare_faces(encodeListknown, face_encoding)
|
73 |
|
74 |
+
# Initialize name as Unknown
|
75 |
+
name = "Unknown"
|
76 |
+
|
77 |
+
# Check if there's a match with known faces
|
78 |
+
if True in matches:
|
79 |
+
matchIndex = matches.index(True)
|
80 |
+
name = classnames[matchIndex].upper()
|
81 |
+
|
82 |
+
# Append recognized name to the list
|
83 |
+
recognized_names.append(name)
|
84 |
+
|
85 |
+
# Draw rectangle around the face
|
86 |
+
cv2.rectangle(image, (left*4, top*4), (right*4, bottom*4), (0, 255, 0), 2)
|
87 |
+
cv2.putText(image, name, (left*4 + 6, bottom*4 - 6), cv2.FONT_HERSHEY_COMPLEX, 1, (255, 255, 255), 2)
|
88 |
+
|
89 |
+
# Store attendance in SQLite database
|
90 |
+
add_attendance(name)
|
91 |
|
92 |
+
# Display the image with recognized faces
|
93 |
+
st.image(image, use_column_width=True, output_format="PNG")
|
94 |
|
95 |
+
# Display recognized names
|
96 |
+
st.write("Recognized Names:")
|
97 |
+
for i, name in enumerate(recognized_names):
|
98 |
+
st.write(f"Face {i+1}: {name}")
|
99 |
else:
|
100 |
st.warning("No faces detected in the image. Face recognition failed.")
|