Ask Your Question
0

What is the best method for getting ROI of an eye?

asked 2016-01-08 11:06:34 -0600

Raymond gravatar image

updated 2016-01-08 11:07:52 -0600

I was able to create already an eye detection application real time and static image using the OpenCV face detection sample. But sometimes it gives false detection and it can't detect faces in specified angle. I would like to hear your thoughts of what method might be better to use for eye detection of a moving (real time) and static images.

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2016-01-11 16:29:21 -0600

I'm working on a (somewhat) related problem and thought I'd offer a suggestion based on my own work. I haven't used the face detection sample, but I assume it uses a cascade classifier. That's a great solution for finding a face, or eyes, or (in my case) a hand, assuming the classifier was trained on robust data including a large variety of images of the object from various angles, lighting conditions, etc. So first off, if you want to detect eyes, and you have some particular angles that are giving you trouble, you could work on training your own cascade classifier that's better suited for your application.

Another thing to note wrt moving images, once you know where an eye is, it typically doesn't move very far from frame to frame. So if you're looking to track eyes in a video for example, you may get better results by using the cascade classifier only as the first phase, and then tracking it from that point onward using an alternate approach. In my case, I find the hand using a cascade classifier, then I basically monitor a loose bounding box, updating it each frame to keep the hand inside the box.

Just some ideas to consider.

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2016-01-08 11:06:34 -0600

Seen: 330 times

Last updated: Jan 08 '16