码迷,mamicode.com
首页 > 其他好文 > 详细

matlab分割背景与物体

时间:2015-01-21 21:54:07      阅读:378      评论:0      收藏:0      [点我收藏+]

标签:

[name,path]=uigetfile(‘*.jpg;*.png;*.bmp‘,‘选择一张图片‘);
f=imread([path name]);
count = 0;
T = mean2(f);
done = false;
while ~done
countcount = count + 1;
g = f > T;
Tnext = 0.5*(mean(f(g)) + mean(f(~g)));
done = abs(T - Tnext) < 0.5;
T = Tnext;
end
g = im2bw(f, T/255);
subplot(121);
imshow(f)
subplot(122);
imshow(g);

matlab分割背景与物体

标签:

原文地址:http://www.cnblogs.com/douyamv/p/4239960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!