From double 2 binary

8 vues (au cours des 30 derniers jours)
Felix
Felix le 1 Oct 2013
Hello, I have an image from type double and i want to convert it to binary format with my threshold. Then I try this code:
for i=1:426
for j=1:640
if IM(i,j)>100
bw(i,j)=250
elseif IM(i,j)<100
bw(i,j) =1
end
end
end
it doesn't work.
another way: bw= IM > 100; also doesn't work/ can u help me? thnx
P.S. I can't use this ways only then i work in type - double

Réponse acceptée

Walter Roberson
Walter Roberson le 1 Oct 2013
images of type double are in the range 0 to 1.
  2 commentaires
Felix
Felix le 1 Oct 2013
So how can I do binarization to this image?
Walter Roberson
Walter Roberson le 1 Oct 2013
BW = IM > (100/256)

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Aucun tag saisi pour le moment.

Community Treasure Hunt

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

Start Hunting!

Translated by