Image in a matlab gui
Mostrar comentarios más antiguos
can i write particular text on any image, so that it may be easy to scroll it ? or.. like having an image and the text simultaneously in same position and getting them scrolled at the same time to get the same feeling? but this may require having many images at the same time in a single window..
take a look of what am i trying to do -
Respuestas (1)
Walter Roberson
el 25 de Jun. de 2012
1 voto
Image objects created with image() use data coordinates for the positioning, which is the same coordinate system that text() uses. Therefore if you can find a way of scrolling the axes, the two will scroll together.
If you have the image processing toolbox you can use http://www.mathworks.com/help/toolbox/images/ref/imscrollpanel.html . That takes the handle of an image and parents the image to be inside a uipanel. If you then set() the Parent property of the text to be the handle returned by imscrollpanel then the image and text will scroll together.
1 comentario
Shree Nath
el 27 de Sept. de 2012
Categorías
Más información sobre Graphics Object Properties 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!