-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathface_detection.py
62 lines (48 loc) · 1.64 KB
/
face_detection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import cv2
from deepface import DeepFace
from face_base import FaceObject, DETECTORS
# 加载摄像头
cap = cv2.VideoCapture(0)
cap.set(cv2.CAP_PROP_FRAME_WIDTH, 640)
cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 480)
counter = 0
faces = []
face_match = False
reference_path = "database"
def face_det(video_frame):
global faces, face_match
try:
faces = []
face_objs = DeepFace.extract_faces(video_frame, detector_backend=DETECTORS[4])
print(face_objs)
if len(face_objs):
face_match = True
for face in face_objs:
face_x = face['facial_area']['x']
face_y = face['facial_area']['y']
face_w = face['facial_area']['w']
face_h = face['facial_area']['h']
faces.append(FaceObject('', face_x, face_y, face_w, face_h))
else:
faces = []
face_match = False
except ValueError:
faces = []
face_match = False
while True:
# 读取摄像头帧
ret, frame = cap.read()
if ret:
face_det(frame)
if face_match:
cv2.putText(frame, "MATCH!", (20, 450), cv2.FONT_HERSHEY_SIMPLEX, 2, (0, 255, 0), 3)
for face_obj in faces:
x, y, w, h = face_obj.source_x, face_obj.source_y, face_obj.source_w, face_obj.source_h
cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 0), 2)
else:
cv2.putText(frame, "NOT MATCH!", (20, 450), cv2.FONT_HERSHEY_SIMPLEX, 2, (0, 0, 255), 3)
cv2.imshow('video', frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv2.destroyAllWindows()