How eye tracking controlled mouse?

1 次查看(过去 30 天)
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

采纳的回答

MathReallyWorks
MathReallyWorks 2017-5-26
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 个评论
JongJin Kwag
JongJin Kwag 2017-5-26
Thank you! I owe you but my mouse's not move. could you more teach details me?
MathReallyWorks
MathReallyWorks 2017-5-26
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 GUIDE 앱 마이그레이션하기 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!