I want to extract object from an image using the following threshold value program how can i use a filter to get the good result.
1 次查看(过去 30 天)
显示 更早的评论
a=imread('a6.jpg');
m=ones(600,800,3);
c=255.*m;
e=ones(600,800,3)
for i=1:600;
for j=1:800;
if a(i,j,1)<100
if a(i,j,1)>55
c(i,j,1)=a(i,j,1);
if a(i,j,2)<104
if a(i,j,2)>75
c(i,j,2)=a(i,j,2);
if a(i,j,3)<90
if a(i,j,3)>56
c(i,j,3)=a(i,j,3);
end
end
end
end
end
end
end
end
e=c./255;
colormap(jet);
image(e);
...
5 个评论
回答(1 个)
Image Analyst
2013-11-25
You cannot get it from thresholding or even combined with texture classification. There is just too much higher level knowledge required. Maybe try this: http://www.mathworks.com/matlabcentral/fileexchange/37197-dem-diffused-expectation-maximisation-for-image-segmentation or similar. But even that won't be perfect. I suggest you use ginput or roipoly to manually locate them (unless you have thousands of images).
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Segmentation and Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!