How to threshold in this.?

1 次查看(过去 30 天)
clear all;
clc;
I = imread('2.png');
threshold = graythresh(I);
originalImage = im2bw(I, threshold);
i = bwareaopen(originalImage,70);
TI = imfill(i, 'holes');
imshow(TI)
I want to detect only the strip which is on object.?
This code not works.
Is there any other method or modification..?
  2 个评论
Image Analyst
Image Analyst 2013-2-16
I wasn't able to download your image. It saves it but it doesn't save it as a real PNG image even though the extension is PNG.
Lalit Patil
Lalit Patil 2013-2-16
i have changed link..

请先登录,再进行评论。

采纳的回答

Image Analyst
Image Analyst 2013-2-16
编辑:Image Analyst 2013-2-16
Don't use graythresh(). Pick your own threshold, perhaps using my interactive thresholding function http://www.mathworks.com/matlabcentral/fileexchange/29372-thresholding-an-image that's in my File Exchange.
  3 个评论
Image Analyst
Image Analyst 2013-2-16
binaryImage = grayImage >= 88 & grayImage <=233;
Lalit Patil
Lalit Patil 2013-2-18
Very helpful Demo...:) It Solves many problems...

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by