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

조회 수: 3 (최근 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개)

이 질문은 마감되었습니다.

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by