How to remove these blobs from binary image?

조회 수: 2 (최근 30일)
Veronika
Veronika 2017년 3월 31일
댓글: Veronika 2017년 3월 31일
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
Adam
Adam 2017년 3월 31일
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
Veronika 2017년 3월 31일
I tried something like you wrote, but it didn´t help. I think, that I did a mistake somewhere. I attach my code.

댓글을 달려면 로그인하십시오.

답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by