imshow - Stretching image to fill axis
24 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm trying to display an image on an axis within a GUI. I'm using the imshow function, but it keeps the dimension ratio of the image. I would like to stretch the image, ignoring the dimension ratio, to fill the axis. Any suggestions?
Thanks, Matt
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 13 Jan. 2013
Bearbeitet: Image Analyst
am 14 Jan. 2013
You can display with imshow() and use the 'XData' and 'YData' property. For example:
imshow(grayImage, [], 'XData', [0 .5], 'YData', [0 .1]);
2 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!