Spaces:
Build error
Build error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from PIL import Image
|
2 |
+
import numpy as np
|
3 |
+
import cv2
|
4 |
+
import requests
|
5 |
+
import face_recognition
|
6 |
+
import os
|
7 |
+
import streamlit as st
|
8 |
+
|
9 |
+
p1 = "ravinder.jpg"
|
10 |
+
p2 = "jivan.jpg"
|
11 |
+
|
12 |
+
st.title("Face Recognition ")
|
13 |
+
Images = []
|
14 |
+
classnames = []
|
15 |
+
|
16 |
+
# read images and train the face_recognition package
|
17 |
+
img1 = cv2.imread(p1)
|
18 |
+
Images.append(img1)
|
19 |
+
classnames.append("Ravi")
|
20 |
+
|
21 |
+
img2 = cv2.imread(p2)
|
22 |
+
Images.append(img2)
|
23 |
+
classnames.append("Jivan")
|
24 |
+
|
25 |
+
# Load images for face recognition
|
26 |
+
encodeListknown = [face_recognition.face_encodings(img)[0] for img in Images]
|
27 |
+
|
28 |
+
# take image from user
|
29 |
+
# Take picture using the camera
|
30 |
+
img_file_buffer = st.camera_input("Take a picture")
|
31 |
+
|
32 |
+
# recognise the face in the uploaded image
|
33 |
+
if img_file_buffer is not None:
|
34 |
+
test_image = Image.open(img_file_buffer)
|
35 |
+
image = np.asarray(test_image)
|
36 |
+
|
37 |
+
imgS = cv2.resize(image, (0, 0), None, 0.25, 0.25)
|
38 |
+
imgS = cv2.cvtColor(imgS, cv2.COLOR_BGR2RGB)
|
39 |
+
facesCurFrame = face_recognition.face_locations(imgS)
|
40 |
+
encodesCurFrame = face_recognition.face_encodings(imgS, facesCurFrame)
|
41 |
+
faceMatchedflag = 0
|
42 |
+
# run looop to find match in encodeListknown list
|
43 |
+
for encodeFace, faceLoc in zip(encodesCurFrame, facesCurFrame):
|
44 |
+
# Assuming that encodeListknown is defined and populated in your code
|
45 |
+
matches = face_recognition.compare_faces(encodeListknown, encodeFace)
|
46 |
+
faceDis = face_recognition.face_distance(encodeListknown, encodeFace)
|
47 |
+
matchIndex = np.argmin(faceDis)
|
48 |
+
|
49 |
+
if matches[matchIndex]:
|
50 |
+
name = classnames[matchIndex].upper()
|
51 |
+
st.write (name)
|
52 |
+
# show the name on image to user
|
53 |
+
y1, x2, y2, x1 = faceLoc
|
54 |
+
y1, x2, y2, x1 = y1 * 4, x2 * 4, y2 * 4, x1 * 4
|
55 |
+
# cv2.rectangle(image , (x1, y1), (x2, y2), (0, 255, 0), 2)
|
56 |
+
# cv2.rectangle(image , (x1, y2 - 35), (x2, y2), (0, 255, 0), cv2.FILLED)
|
57 |
+
# cv2.putText(image , name, (x1 + 6, y2 - 6), cv2.FONT_HERSHEY_COMPLEX, 1, (255, 255, 255), 2)
|
58 |
+
|
59 |
+
# display_image_with_overlay(image, name)
|
60 |
+
st.image(image , use_column_width=True, output_format="PNG")
|
61 |
+
faceMatchedflag = 1
|
62 |
+
|
63 |
+
if(faceMatchedflag == 0) :
|
64 |
+
st.warning("No faces detected in the image.")
|
65 |
+
|