Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
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 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (0)
Questa domanda è chiusa.
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!