Image resize image in matlab
Mostrar comentarios más antiguos
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 comentario
Jan
el 13 de Jun. de 2013
You forgot to mention any dteilas about the problem. What exactly do you see and what do you expect?
Respuesta aceptada
Más respuestas (3)
Chandra Shekhar
el 13 de Jun. de 2013
Editada: Chandra Shekhar
el 13 de Jun. de 2013
0 votos
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
el 13 de Jun. de 2013
0 votos
Mehwish
el 13 de Jun. de 2013
0 votos
Categorías
Más información sobre Image Arithmetic en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!