How to close boundary of a circular object in binary image

6 visualizaciones (últimos 30 días)
CW Hsu
CW Hsu el 29 de Nov. de 2022
Comentada: CW Hsu el 9 de Dic. de 2022
Thank you all for being here.
I have an image below
the outer boundary is not closed. So it would be a problem when I calculate area of this bubble.
How can I close the boundary of circular object in image above image automatically?

Respuesta aceptada

Matt J
Matt J el 29 de Nov. de 2022
load Image
[c,r]=imfindcircles(BW,[10,100]);
area=pi*r^2
area = 1.1299e+03
  5 comentarios
Matt J
Matt J el 1 de Dic. de 2022
Editada: Matt J el 1 de Dic. de 2022
Use a loop over the different detected circle data c(i,:) and r(i) to repeat the process for many objects.
CW Hsu
CW Hsu el 9 de Dic. de 2022
Thanks for your help. It works successfully

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 30 de Nov. de 2022
Try this, where mask is your binary image
mask = bwconvhull(mask, 'union');
props = regionprops(mask, 'Area', 'EquivDiameter');
area = props.Area
diameter = props.EquivDiameter
  2 comentarios
CW Hsu
CW Hsu el 1 de Dic. de 2022
@Image Analyst Thanks for your advice.
Since I have many images, usually there is not only one circular object in the image. Can I use 'union'? Or maybe 'object' ?
But for the image I show at the top. I try using 'object' . The image becomes image like this.
Image Analyst
Image Analyst el 1 de Dic. de 2022
You can use the 'objects' option but keep in mind that if the curves are too far apart it will consider them as two separate blobs. So two C shapes might end up as two solid D shapes. Only if their convex hulls overlap would they be considered a single blob. And then you might get something like your bottom image. So you'd have to call bwconvhull a second time to get a convex shape.
Another option would be to use dbscan to identify which pixels are close to each other. You specify that closeness distance. So this essentially labels each group of blobs with a single ID number. Then you can use ismember to extract each group one at a time, and then use the 'union' option since all pixels in the image now belong to a single group. Then repeat for all groups in the image. I'm attaching a demo I created of dbscan. See Wikipedia if you don't know what dbscan is.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by