downsampling the filtered image

2 visualizaciones (últimos 30 días)
sheno39
sheno39 el 7 de Nov. de 2013
Comentada: sheno39 el 7 de Nov. de 2013
i have iteratively filtered the image using low pass filtering. now i need to downsample the filtered images. how to implement?

Respuesta aceptada

Matt J
Matt J el 7 de Nov. de 2013
By indexing, perhaps, e.g.,
x=1:10;
xdownsampled=x(1:2:end);
Or, if downsampling at non-integer locations, by interpolation. See griddedInterpolant().
  3 comentarios
Matt J
Matt J el 7 de Nov. de 2013
Yes, using the methods I mentioned. Or IMRESIZE.
sheno39
sheno39 el 7 de Nov. de 2013
Thank You.

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by