필터 지우기
필터 지우기

Can you please explain this max and temp?

조회 수: 1 (최근 30일)
Iqra Saleem
Iqra Saleem 2018년 2월 14일
답변: Steven Lord 2018년 2월 14일
Idilate = Igray;
for i = 1:rows
for j = 2:cols-1
temp = max(Igray(i,j-1), Igray(i,j));
Idilate(i,j) = max(temp, Igray(i,j+1));
end

답변 (1개)

Steven Lord
Steven Lord 2018년 2월 14일
It's computing a moving maximum. If you're using release R2016a or later of MATLAB you could use the movmax function instead.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by