displaying images as a small icons ( low resolution )
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Chandra Kurniawan
il 20 Gen 2012
Hi, Rehana
we can resize an image with imresize from image processing toolbox
Eq:
I = imread('cameraman.tif');
imshow(imresize(I,0.25));
0 Commenti
Più risposte (1)
Image Analyst
il 20 Gen 2012
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 Commenti
Vedere anche
Categorie
Scopri di più su DICOM Format in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!