-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfaceRecognition.py
112 lines (97 loc) · 3.02 KB
/
faceRecognition.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
63
64
65
66
67
68
69
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import cv2
from detection.simple_facerec import SimpleFacerec
from src.ticket.repository import *
from src.flight.repository import *
from pydispatch import dispatcher
metaKey = "moo"
MyNode = object()
"""
This file contains previously discussed functions to perform the action of both facial detection and recognition; the
only difference being additional attributes have been added into the code, as all these attributes are entries within
the database.
"""
def detectFace():
ticketStg = TicketStg()
flightStg = FlightStg()
# Encode faces from a folder
sfr = SimpleFacerec()
sfr.load_encoding_images("./public/images")
# Load Camera
cap = cv2.VideoCapture(0)
print("Reading")
while True:
ret, frame = cap.read()
# Detect Faces
face_locations, face_names = sfr.detect_known_faces(frame)
for face_loc, name in zip(face_locations, face_names):
y1, x2, y2, x1 = face_loc[0], face_loc[1], face_loc[2], face_loc[3]
ticket = ticketStg.findByName(name)
if ticket != None:
flight = flightStg.findById(ticket[3])
event = {"ticket": ticket, "flight": flight}
dispatcher.send(metaKey, MyNode, event=event)
else:
event = None
dispatcher.send(metaKey, MyNode, event=event)
cv2.putText(
frame, name, (x1, y1 - 10), cv2.FONT_HERSHEY_DUPLEX, 1, (0, 0, 200), 2
)
cv2.rectangle(frame, (x1, y1), (x2, y2), (0, 0, 200), 4)
if name == "Unknown":
cv2.putText(
frame,
"You cannot proceed",
(30, 80),
cv2.FONT_HERSHEY_SIMPLEX,
0.7,
(0, 0, 255),
2,
)
else:
cv2.putText(
frame,
"You can proceed",
(30, 80),
cv2.FONT_HERSHEY_SIMPLEX,
0.7,
(0, 255, 0),
2,
)
center = (
int(frame.shape[1] / 2),
int(frame.shape[0] / 2),
)
p1 = (
center[0] - 100,
center[1] - 100,
)
p2 = (
center[0] + 100,
center[1] + 100,
)
cv2.rectangle(frame, p1, p2, (0, 255, 0), 2)
cv2.putText(
frame,
"Try to get closer to the frame for better detection.",
(30, 20),
cv2.FONT_HERSHEY_SIMPLEX,
0.6,
(0, 0, 0),
2,
)
cv2.putText(
frame,
"Press esc to close the window",
(30, 50),
cv2.FONT_HERSHEY_SIMPLEX,
0.6,
(0, 0, 0),
2,
)
cv2.imshow("Frame", frame)
key = cv2.waitKey(1)
if key == 27:
break
cap.release()
cv2.destroyAllWindows()
# detectFace()