displaying images as a small icons ( low resolution )
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello sir..
Can we display images as a small icons?? like with low resolutions? please help me.. i am stucked in that..Thanks in advance!!
댓글 수: 0
채택된 답변
Chandra Kurniawan
2012년 1월 20일
Hi, Rehana
we can resize an image with imresize from image processing toolbox
Eq:
I = imread('cameraman.tif');
imshow(imresize(I,0.25));
댓글 수: 0
추가 답변 (1개)
Image Analyst
2012년 1월 20일
No need to call imresize(). Just set up your axes to be small in the first place and call imshow(). It will automatically scale down your image to fit in the tiny axes that you have on your figure.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 DICOM Format에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!