How eye tracking controlled mouse?

7 views (last 30 days)
We are now in the process of tracking the eyes and moving the mouse. but mouse not move why? please teach mouse moving! Help me please uu

Accepted Answer

MathReallyWorks
MathReallyWorks on 26 May 2017
Hello Jongjin,
If you are able to track the eyes and get the co-ordinates of a point where your eyes are looking, use
set(0, 'PointerLocation', [x, y])
in a loop for all [x,y] co-ordinates that you are tracking.
It works according to your requirement.
If you want to test the above code, copy and paste this line:
set(0, 'PointerLocation', [100,100])
in your command window. You can see pointer location clearly.
  2 Comments
JongJin Kwag
JongJin Kwag on 26 May 2017
Thank you! I owe you but my mouse's not move. could you more teach details me?
MathReallyWorks
MathReallyWorks on 26 May 2017
Your "mouse" won't move JongJin. Your "cursor' will move on the screen. To see the movement clearly, run this code:
for x=1:100
for y=1:100
set(0, 'PointerLocation', [x, y])
pause(0.001); %Delay is introduced for clarity of movement.
end
end
If you want your mouse to move on mouse pad. You will have to introduce a hardware interfacing on your mouse with the help of servo or stepper motor. Further you can code these motors for proper movement of your mouse on mouse pad.

Sign in to comment.

More Answers (0)

Categories

Find more on GUIDE 앱 마이그레이션하기 in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!