Eye Control, Gaze Tracking Method

I am working on an Eye Gaze detection project using opencv in C ++ language, I was able to detect face and eyes, but still no luck making it stable.

The main problem is that when I ask to detect the right eye, for example, sometimes it mixes with the left eye, although I use a cascade that is for the right eye

So the question is how to limit the detection on a specific eye without colliding with the other, and if you have a good way to use the detected parts in the gaze evaluation, I can provide code if needed

Best of all to you Ahmad

+3


source to share


1 answer


Sorry, I am a new user, so I cannot comment.

Do you have access to the entire face? If so, you can use simple geometry to define the region of interest to exclude the right side of the face, and start a cascade of eyes only on the left side, for example.



It is also helpful to exclude the bottom (mouth) as the cascade of eyes produces a lot of false positives.

+3


source







All Articles