필터 지우기
필터 지우기

what does the meaning of this?

조회 수: 2 (최근 30일)
ganesh s
ganesh s 2011년 11월 30일
hello sir i am having one matlab code but i did not understand the meaning of this line "t(:,:)=t(:,:)+uint8(t(:,:)<1)".can anybody tell me the meaning of this line. thanking You

채택된 답변

Daniel Shub
Daniel Shub 2011년 11월 30일
It is basically:
t = t+1 for t < 1
t = t otherwise
A clear way to write it might be
t(t < 1) = t(t < 1)+1;
  댓글 수: 1
ganesh s
ganesh s 2011년 11월 30일
thanks Daniel

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by