From double 2 binary

4 次查看(过去 30 天)
Felix
Felix 2013-10-1
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

采纳的回答

Walter Roberson
Walter Roberson 2013-10-1
images of type double are in the range 0 to 1.
  2 个评论
Felix
Felix 2013-10-1
So how can I do binarization to this image?

请先登录,再进行评论。

更多回答(0 个)

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by