downsampling the filtered image
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i have iteratively filtered the image using low pass filtering. now i need to downsample the filtered images. how to implement?
0 Kommentare
Akzeptierte Antwort
Matt J
am 7 Nov. 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Multirate Signal Processing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!