Eye Blink Detection
Here we are going to build upon this knowledge and develop a computer vision application that is capable of detecting and counting blinks in video…
Here we are going to build upon this knowledge and develop a computer vision application that is capable of detecting and counting blinks in video…
Here we are going to build upon this knowledge and develop a computer vision application that is capable of detecting and counting blinks in video streams using facial landmarks and OpenCV.
To build our blink detector, we’ll be computing a metric called the eye aspect ratio (EAR), introduced by Soukupová and Čech in their 2016 paper
Unlike traditional image processing methods for computing blinks which typically involve some combination of:
The eye aspect ratio is instead a much more elegant solution that involves a very simple calculation based on the ratio of distances between facial landmarks of the eyes.
This method for eye blink detection is fast, efficient, and easy to implement.
$ python main.py --shape-predictor shape_predictor_68_face_landmarks.dat \
--video sample_video.mp4
[INFO] loading facial landmark predictor...
[INFO] starting video stream thread...
Blinks: 3.EAR: 0.31.q to stop playback and close the window.In terms of blink detection, we are only interested in two sets of facial structures — the eyes.
Each eye is represented by 6 (x, y)-coordinates, starting at the left-corner of the eye (as if you were looking at the person), and then working clockwise around the remainder of the region.