Image resize image in matlab
Mostra commenti meno recenti
Hi, I am facing a blurring issue in the below code:
I = imread('waterframe-1.png');
I=imresize(I,[16 16]);
I=rgb2ycbcr(I);
I=ycbcr2rgb(I);
I=imresize(I,[256 256]);
I=ycbcr2rgb(I);
imshow(I);
Any help in this will be very highly appreciated
Thanks Mehwish
1 Commento
Jan
il 13 Giu 2013
You forgot to mention any dteilas about the problem. What exactly do you see and what do you expect?
Risposta accettata
Più risposte (3)
Chandra Shekhar
il 13 Giu 2013
Modificato: Chandra Shekhar
il 13 Giu 2013
0 voti
dont resize original image to [16 16] make it as it is.
follow following code to get more info
I = imread('waterframe-1.png');
I=imresize(I,[256 256]);
I=rgb2ycbcr(I);
I=ycbcr2rgb(I);
I=imresize(I,[256 256]);
I=ycbcr2rgb(I);
figure;imshow(I);
Mehwish
il 13 Giu 2013
0 voti
Mehwish
il 13 Giu 2013
0 voti
Categorie
Scopri di più su Image Arithmetic in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!