Ask Your Question
2

Face , Eyes and Iris detection

asked 2013-04-21 05:11:52 -0600

souls gravatar image

updated 2020-09-17 05:57:16 -0600

Hello,

I read about cascade classifier for this link : http://docs.opencv.org/doc/tutorials/objdetect/cascade_classifier/cascade_classifier.html

and the code works perfect!!

So, I am trying to expand the code in the above link, for Iris detection .. Until now, I cannot figure out, all the google materials for Iris detection are working different compare with the code in the link above.

How can i implement this ? Any suggestion please ...?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
7

answered 2013-04-22 04:03:54 -0600

updated 2013-04-22 06:15:37 -0600

  1. A novel approach for accurate localisation of the pupils in real time is proposed in this paper: Timm and Barth. Accurate eye centre localisation by means of gradients. In Proceedings of the Int. Conference on Computer Theory and Applications (VISAPP), volume 1, pages 125-130, Algarve, Portugal, 2011. INSTICC. (also see youtube video at Accurate eye center localisation for low-cost eye tracking) There is also a github repository that implements this paper: C++ implementation And a blog article

  2. You can use this paper also to locate the position of the eyes. Bolme, D.S. "Average of Synthetic Exact Filters", IEEE Conference on Computer Vision and Pattern Recognition, 2009. CVPR 2009. PDF, Source code

  3. Another approach is to use a facial landmark detector. It will return you the four corner points of the eyes, corner of mouth, center of nose, and center of face. It does however require you to give it a bounding box of the face. You can use the four corner points of the eyes to reduce the region of interesting in order to find de pupils. project page PDF

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-04-21 05:11:52 -0600

Seen: 16,995 times

Last updated: Apr 22 '13