Info
此问题已关闭。 请重新打开它进行编辑或回答。
I am new on MATLAB and want to create an editor using GUI but I cannot handle the axes position and mouse movement (drag) in which image is loaded . Kindly help me
1 次查看(过去 30 天)
显示 更早的评论
code for button up/down function: pos = get(gca, 'currentpoint'); % get mouse location on figure x = pos(1); y = pos(2); % assign locations to x and y set(handles.text2, 'string', ['Mouse pressed @ X: ', num2str(x) , ' ,Y: ', num2str(y)]);
code for cursor movement: set (gcf, 'WindowButtonMotionFcn', @mouseMove); function mouseMove (object, eventdata) C = get (gca, 'CurrentPoint'); title(gca, ['(X,Y) = (', num2str(C(1,1)), ', ',num2str(C(1,2)), ')']);
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!