Real-time eye blink detection using facial landmarks

Reference : https://www.pyimagesearch.com/2017/04/24/eye-blink-detection-opencv-python-dlib/

The Objectives of a project

Using a webcam, we will get real-time video. so, I will detect and count eye blink with real-time video.

<result>

execution result gif. when i blink eyes, count up .

Knowledge to be used

  1. We use a research result how changes in the ratio of the eyes when they blink.

  2. we need to use Opencv for detecting facial landmarks

  3. we need to install dlib, imutils, .... packages to activity

  4. we use model "shape_predictor_68_face_landmarks.dat"

shape_predictor_68_face_landmarks.dat" : Get 68 Face Landmarks Data

The Order of study...

  1. what is dlib, imutils? (+how to install)

  2. Real_time facial-landmarks-dlib-opencv-python

  3. introduce how to detect eye blink by "real-time eye blink detection using facial landmarks"

  4. eye-blink-detection-opencv-dlib

Last updated

Was this helpful?