-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
51 lines (37 loc) · 1.24 KB
/
main.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
import cv2
import dlib
from scipy.spatial import distance
from imutils import face_utils
cap = cv2.VideoCapture(0)
detector = dlib.get_frontal_face_detector()
predictor = dlib.shape_predictor('shape_predictor_68_face_landmarks.dat')
def eye_aspect_ratio(eye):
A = distance.euclidean(eye[1], eye[5])
B = distance.euclidean(eye[2], eye[4])
C = distance.euclidean(eye[0], eye[3])
eye = (A + B) / (2.0 * C)
return eye
count = 0
total = 0
while True:
success,img = cap.read()
imgGray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
faces = detector(imgGray)
for face in faces:
landmarks = predictor(imgGray,face)
landmarks = face_utils.shape_to_np(landmarks)
leftEye = landmarks[42:48]
rightEye = landmarks[36:42]
leftEye = eye_aspect_ratio(leftEye)
rightEye = eye_aspect_ratio(rightEye)
eye = (leftEye + rightEye) / 2.0
if eye<0.3:
count+=1
else:
if count>=3:
total+=1
count=0
cv2.putText(img, "Blink Count: {}".format(total), (10, 30),cv2.FONT_HERSHEY_SIMPLEX, 0.7, (0, 0, 255), 2)
cv2.imshow('Video',img)
if cv2.waitKey(1) & 0xff==ord('q'):
break