Eye gaze detection in android [closed]

asked 2018-12-04 04:39:56 -0600

Akhil Patel gravatar image

updated 2019-12-10 01:04:55 -0600

I'm looking to perform real time gaze tracking using the front camera of an android phone. My goal is to track the user's gaze while the user moves his head from left to right and right to left tries to maintain the gaze at a certain object on screen. I found this Source code and implement in my code. but it doesn't track the gaze only track face.

if I should implement algorithms, which algorithms should I look at?

edit retag flag offensive reopen merge delete

Closed for the following reason spam or advertising by mshabunin
close date 2019-04-04 07:01:53.235765

Comments

1

imho, you need a head pose detection first (maybe using 3d model points / landmarks & solvePnP), then a proper pupil location (e.g. from landmarks).

then, you need to trace a ray from the inner eye through the pupil, and transform that with the head pose.

(the code you're refering to, does not do any of it, it only tries to refine the pupil position (in 2d) with template matching)

berak gravatar imageberak ( 2018-12-06 03:44:42 -0600 )edit

ok understood i will try.

Akhil Patel gravatar imageAkhil Patel ( 2018-12-06 07:15:24 -0600 )edit

Does this help Eye gaze

supra56 gravatar imagesupra56 ( 2019-04-02 07:46:46 -0600 )edit