Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Find eyes and mouth in an face image

I'm curious about finding the eyes from an image. Let's say I have an thresholded image and I have 3 blobs representing two eyes and the mouth. Is there a way to detect which of the region of pixels is eye region and approximate it's center?

like image 912
Madalin Avatar asked Mar 11 '23 23:03

Madalin


2 Answers

You can check the following blog which is much equipped with facial landmarks detection including eye regions. It will be very much easier to find approximate center of eye. It gives six points (37-42 left eye & 43-48 right eye) of eye along the eye lid which can be used to calculate the eye center.

enter image description here

Detect eyes, nose, lips, and jaw with dlib, OpenCV, and Python

There are much more you may find them very much interesting and helpful.

like image 120
Ashfak Md Shibli Avatar answered Apr 27 '23 01:04

Ashfak Md Shibli


I am not sure if I follow your question right! Do you want to process a gray level/ color image or a binary image.

You might find the following links relevant if you are trying to locate fiducial points on face images

1) http://www.learnopencv.com/facial-landmark-detection/

2) http://danielnouri.org/notes/2014/12/17/using-convolutional-neural-nets-to-detect-facial-keypoints-tutorial/

3)http://cmp.felk.cvut.cz/~uricamic/flandmark/

like image 40
eyebies Avatar answered Apr 27 '23 02:04

eyebies