Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

design a function to identify whether the gray scale of the specified area meets the conditions

조회 수: 1 (최근 30일)
We have a gray image I, and we need to create a function F(I,a,b) to return a binary matrix F that is of the same size as I, where 1 for pixels satisfying the domain condition and 0 otherwise. a and b means the domain [a, b].

답변 (1개)

Sindhu Karri
Sindhu Karri 2020년 11월 11일
You can use below attached code as a reference
function I=F(I,a,b)
[c, d]=size(I);
for i=1:c
for j=1:d
if(a<=I(i,j)&&I(i,j)<=b)
I(i,j)=1;
else
I(i,j)=0;
end
end
end
end

Community Treasure Hunt

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

Start Hunting!

Translated by