Data cursor in GUI
Mostra commenti meno recenti
I am loading an image in GUI and turning ON data cursor. I want user to point at some location in the image and the GUI should automatically record X and Y position of the datacursor in two text boxes. I have tried
but it only works on the figure and even on the figure I am not able to automatically transfer datacursor position to my GUI's text boxes. I would appreciate any help.
Thanks.
Risposte (2)
Walter Roberson
il 8 Dic 2011
0 voti
Sounds to me as if ginput() would be more appropriate than datacursormode
1 Commento
Sean de Wolski
il 8 Dic 2011
Or windowbuttondownfcn in the figure properties if you don't want cross hairs or the requirement of a timer or while loop calling ginput.
Sean de Wolski
il 8 Dic 2011
Use the WindowButtonMotionFcn option of the figure to get the position of the cursor every time it's moved. If it's in the range of the axes, display the current position (know the axes position in the figure) then update your edit fields.
docsearch figure properties
And here's a fun example:
Categorie
Scopri di più su Data Exploration in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!