Coordinates of manually selected point
Mostrar comentarios más antiguos
Is there a MATLAB command/s for getting the coordinates of manually selected point in an image (figure)? Till now I have doing this using the figure toolbar but i will need to use it in an m file.
Respuestas (2)
Gerd
el 30 de Jun. de 2011
1 voto
Hi Suhas,
you can use datacursormode to solve your problem.
help datacursormode
x=linspace(0,10,1000); y=sin(x); plot(x,y) dcm = datacursormode;
In the Updatefunction of the dcm Object you can get the position on the graph that you clicked.
Gerd
1 comentario
Suhas Deshpande
el 30 de Jun. de 2011
Categorías
Más información sobre Geometric Transformation and Image Registration en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!