Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Iris detection with opencv

How can I detect irises in a face with opencv?

like image 616
Baran Avatar asked Feb 16 '11 23:02

Baran


2 Answers

Have a look at this forum thread. There's some source code there to get you started, but be careful about using it directly -- the original author seemed to have problems compiling it.

like image 141
mpenkov Avatar answered Sep 18 '22 23:09

mpenkov


Start with detecting circles - see cvHoughCircles - hint, eyes have a series of concentric circles.

like image 42
Martin Beckett Avatar answered Sep 16 '22 23:09

Martin Beckett