필터 지우기
필터 지우기

show image in it's original resolution in gui figures

조회 수: 19 (최근 30일)
mary
mary 2011년 6월 12일
hi, i'm gonna show an image with high resolution (e.g. 1400*960) in gui figure that i design it. but as i use imshow to show it, matlab gives me a warning: "Warning: Image is too big to fit on screen; displaying at 50% " but i want to show it in it's original resolution. how can i do it. i test 'InitialMagnification' property of imshow too. but it has no effect. tnx for your help

답변 (1개)

Jan
Jan 2011년 6월 12일
Using IMSHOW seems to be the wrong command. What about IMAGE?
AxesH = axes('Units', 'pixels', 'position', [10, 10, 1400, 960], ...
'Visible', 'off');
image(Im, 'Parent', AxesH);

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by