How change somme values on a matrix?
조회 수: 1 (최근 30일)
이전 댓글 표시
Biza Ferreira
2015년 6월 27일
편집: Salaheddin Hosseinzadeh
2015년 6월 27일
for example I have a "A" matrix , i want change somme pixel values inside him, like this example:
if true
% code
if A<=20
A(value)=0;
else
A(value)=255;
end
How can I do this?!
댓글 수: 0
채택된 답변
Salaheddin Hosseinzadeh
2015년 6월 27일
편집: Salaheddin Hosseinzadeh
2015년 6월 27일
Hi Biza,
It sounds like you want to do thresholding.
A = A>20; % this makes A a logical matrix of 0 and 1, 1 is when A < 20
A = A.*255;
Anyway, this will do the job for you ;)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!