-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetect_blinks_new.py
143 lines (109 loc) · 3.77 KB
/
detect_blinks_new.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# blink_detector = BlinkDetector()
# blink_detector.calibrate(CurrentEAR)
# take frames ear at calibrate state. Take min, max
# blink_detector.stop_calibrator()
# blink_detector.detect()
import eye
from blink_detector import Facer
from blink_detector import FaceRecognizer
from video_streamer import VideoStreamer
import argparse
import time
import cv2
EYE_AR_THRESH = 0.24
EYE_AR_CONSEC_FRAMES = 1
# after this count of frames without eye - reset CURRENT_SCENE to 0
RESET_THRESH = 50
# Scene 0 - reset scene
# Scene 1 - calibration scene / intro
# Scene 2 - movie
# Scene 3 - outro
# enum?
CURRENT_SCENE = 0
# Frames without person
NO_ONE_IN = 0
ap = argparse.ArgumentParser()
ap.add_argument("-p", "--shape-predictor", required=True,
help="path to facial landmark predictor")
ap.add_argument("--ip", default="127.0.0.1", help="OSC server IP")
ap.add_argument("--port", type=int, default=5005, help="OSC server port")
args = ap.parse_args()
# initialize the frame counters and the total number of blinks
COUNTER = 0
TOTAL = 0
FRAME_COUNTER = 0
# Init face detector
print("[INFO] loading facial landmark predictor...")
facer = Facer(args.shape_predictor)
# start the video stream thread
print("[INFO] camera sensor warming up...")
vs = VideoStreamer()
# OSC client
osc_client = OSCClient(args.ip, args.port)
time.sleep(2.0)
while True:
# take frame from stream
frame = vs.get_frame()
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
# detect faces in the grayscale frame
rects = facer.detect(gray)
# loop over the face detections
for rect in rects:
# extract face shapes
shapes = facer.get_shapes(gray, rect)
# extract eye
rightEye = FaceRecognizer.right_eye(shapes) # TODO: Bad name facerecognizer
rightEAR = eye.aspect_ratio(rightEye)
# average the eye aspect ratio together for both eyes
# ear = (leftEAR + rightEAR) / 2.0
# compute the convex hull for the left and right eye, then
# visualize each of the eyes
# leftEyeHull = cv2.convexHull(leftEye)
rightEyeHull = cv2.convexHull(rightEye)
# cv2.drawContours(frame, [leftEyeHull], -1, (0, 255, 0), 1)
cv2.drawContours(frame, [rightEyeHull], -1, (0, 255, 0), 1)
# check to see if the eye aspect ratio is below the blink
# threshold, and if so, increment the blink frame counter
if rightEAR < EYE_AR_THRESH:
COUNTER += 1
# otherwise, the eye aspect ratio is not below the blink
# threshold
else:
# if the eyes were closed for a sufficient number of
# then increment the total number of blinks
if COUNTER >= EYE_AR_CONSEC_FRAMES:
TOTAL += 1
# reset the eye frame counter
COUNTER = 0
# draw the total number of blinks on the frame along with
# the computed eye aspect ratio for the frame
osc_client.send("/counter", TOTAL)
osc_client.send("/ear", rightEAR)
cv2.putText(frame, "Blinks: {}".format(TOTAL), (10, 30),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.putText(frame, "EAR: {:.2f}".format(rightEAR), (200, 30),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.putText(frame, "Rect: {:.2f}".format(len(rects)), (10, 60),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.putText(frame, "Frame: {:.2f}".format(FRAME_COUNTER), (10, 90),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
if len(rects) < 1:
NO_ONE_IN += 1
else:
NO_ONE_IN = 0
if NO_ONE_IN > RESET_THRESH:
CURRENT_SCENE = 0
cv2.putText(frame, "NO_ONE_IN: {:.2f}".format(NO_ONE_IN), (10, 120),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.putText(frame, "CURRENT_SCENE: {:.2f}".format(CURRENT_SCENE), (10, 150),
cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
FRAME_COUNTER += 1
# show the frame
cv2.imshow("Frame", frame)
key = cv2.waitKey(1) & 0xFF
# if the `q` key was pressed, break from the loop
if key == ord("q"):
break
# do a bit of cleanup
cv2.destroyAllWindows()
vs.stop()