imshow - Stretching image to fill axis

조회 수: 23 (최근 30일)
Matt
Matt 2013년 1월 13일
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

채택된 답변

Image Analyst
Image Analyst 2013년 1월 13일
편집: Image Analyst 2013년 1월 14일
You can display with imshow() and use the 'XData' and 'YData' property. For example:
imshow(grayImage, [], 'XData', [0 .5], 'YData', [0 .1]);
  댓글 수: 2
Walter Roberson
Walter Roberson 2013년 1월 14일
You can pass in coordinates to image() and imagesc()
Matt
Matt 2013년 1월 14일
Xdata and Ydata worked great, thanks!

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jurgen
Jurgen 2013년 1월 13일
Have you tried image or imagesc? Or the 'axis image' command?

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by