How to remove these blobs from binary image?
Ältere Kommentare anzeigen
Dear all,
I have binary image and I would like to remove some part of this binarization specifically this one:

How can I do it? Thank you for your answers.
2 Kommentare
Adam
am 31 Mär. 2017
I'm sure ImageAnalyst will give the best advice if he is around, but in the mean time I would imagine that
doc bwlabel
should label up the parts of your image quite well. The objects appear to be fairly well connected apart from those smaller bits of noise within your selected area.
If you can label up the regions you want to remove then you can easily get rid of them using a mask
e.g. if you have a labelled image and body #15 is the one you want to get rid of you can simply do:
bwImage( labelledImage == 15 ) = 0;
and the same for any other numbered body. Something like
doc imclose
or similar may be useful if the connectivity is not quite good enough to label few enough events, but I'm not an expert on that. Just a few suggestions to look at really until a proper expert appears!
Veronika
am 31 Mär. 2017
Antworten (0)
Kategorien
Mehr zu Image Type Conversion finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!