필터 지우기
필터 지우기

Can I use diff function to subtract pixel from 2-pixel away from it? So it not neighbour pixel.

조회 수: 2 (최근 30일)
Can I use diff function to subtract pixel from 2-pixel away from it? So it not neighbour pixel.

채택된 답변

Walter Roberson
Walter Roberson 2013년 2월 18일
No.
I suggest you use
diff2_col = YourArray(:,3:end) - YourArray(:,1:end-2)
or
diff2_row = YourArray(3:end,:) - YourArray(1:end-2,:)
depending on which dimension you want to proceed across.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by