필터 지우기
필터 지우기

downsampling the filtered image

조회 수: 2 (최근 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개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by