downsampling image
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Max
el 8 de Oct. de 2011
Comentada: juveria fatima
el 14 de Mzo. de 2018
hello
i have an original image of size 288x360 ..i need to perform the decomposition of this image into constituent polyphase components of 144x180 frames..
please suggest some way in matlab to do it..
presently i am tring it with gtdecomp command without any success..
0 comentarios
Respuesta aceptada
Wayne King
el 8 de Oct. de 2011
Hi, You can use dyaddown() from the Wavelet Toolbox.
x = randn(8,8);
% this gives you 1st row, 1st column, 3rd row, 3rd colum, etc
y = dyaddown(x,'m',1);
% now this gives you 2nd row, 2nd column, etc
y = dyaddown(x,'m',0);
Or you can use downsample() from the Signal Processing Toolbox. This gives you one polyphase matrix.
Y = downsample(x,2,0);
Y = (downsample(Y',2,0))';
This gives you the other:
Y1 = downsample(x,2,1);
Y1 = (downsample(Y1',2,1))';
Hope that helps,
Wayne
2 comentarios
juveria fatima
el 14 de Mzo. de 2018
downsampling will loose the image data
what is the efficient way to compress image with out data loss
Más respuestas (1)
SK Ahsan
el 12 de Abr. de 2016
How Many Different Techniques Are Applied To Downsample An Image? Can Any One Elaborate It?
0 comentarios
Ver también
Categorías
Más información sobre Multirate Signal Processing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!