downsampling the filtered image

3 ビュー (過去 30 日間)
sheno39
sheno39 2013 年 11 月 7 日
コメント済み: sheno39 2013 年 11 月 7 日
i have iteratively filtered the image using low pass filtering. now i need to downsample the filtered images. how to implement?

採用された回答

Matt J
Matt J 2013 年 11 月 7 日
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 件のコメント
Matt J
Matt J 2013 年 11 月 7 日
Yes, using the methods I mentioned. Or IMRESIZE.
sheno39
sheno39 2013 年 11 月 7 日
Thank You.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by