How to generate a bitmap image without using function...Please help

4 次查看(过去 30 天)
How can i generate bitmap representation of an image using thresholding?? below code didn't work....
for i=1:r
for j=1:s
thresh=C(i,j)+Di;
if(imean(i,j)>=thresh)
bm(i,j)=1;
else
bm(i,j)=0;
end
end
end
figure
imshow(bm);
  8 个评论
Image Analyst
Image Analyst 2016-7-4
编辑:Image Analyst 2016-7-4
I fixed your formatting for you, but please read this.
Also to do a locally adaptive threshold like you did, you can do it vectorized if you just create an m1 (or n1) image with conv2() or imfilter(), then use >=. Let me know if you can't figure it out.
bm =

请先登录,再进行评论。

回答(1 个)

Walter Roberson
Walter Roberson 2016-6-29
thresh = C + Di;
bm = imean >= thresh;
No loop required.

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by