Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

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

1 vue (au cours des 30 derniers jours)
Xiaoya Jiang
Xiaoya Jiang le 7 Nov 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
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].

Réponses (1)

Sindhu Karri
Sindhu Karri le 11 Nov 2020
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

Cette question est clôturée.

Community Treasure Hunt

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

Start Hunting!

Translated by