Does anyone know how I can get the current position of my cursor when I move over my figure with my cursor?

89 次查看(过去 30 天)
This position should be relative to the lower left corner of the figure and the unit should be pixels (to be able to define the position of the axes for example).
How to get the current pointer/mouse position in pixels relative to the lower left corner of the parent container (the red cross should have pixel coordinates [0,0])?
Orange = imread('77.jpg');
figure
imshow(Orange)

回答(2 个)

Voss
Voss 2021-12-17
cp = get(gcf(),'CurrentPoint');
display(cp);
  1 个评论
S.
S. 2021-12-19
编辑:S. 2021-12-19
It doesn't seem to work. When I run it, I get cp = [0 0] and if I click on a different place in the parent container nothing happens. Why?

请先登录,再进行评论。


Image Analyst
Image Analyst 2021-12-19
Use impixelinfo:
Orange = imread('77.jpg');
imshow(Orange)
axis('on', 'image')
impixelinfo
  11 个评论
Image Analyst
Image Analyst 2022-1-6
In all the years I've used MATLAB I've never had to mouse around outside an axes and get the (x,y) coordinates. I've only needed the coordinates inside the image itself.
You can get the 'Position' property for all the controls on the figure window, and then dynamically place things. Like if you want a scroll bar halfway between the left of the figure and the left of the axes you can do
pos = handles.axes1.InnerPosition;
pos2 = handles.listbox1.Position;
pos2(1) = pos(1)/2;
handles.listbox1.Position = pos2;
The only thing different than knowing the x value after interactively mousing around and finding it, is line 3 where it's computed relative to other things on the figure window.
S.
S. 2022-1-10
Thanks for the answer.
I used now this:
while true
get(0, 'PointerLocation')
pause(0.01);
end
It gives the location compared to the lower left corner of my computer window. With a bit head calculation, I could place everything.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Visual Exploration 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by