Removing black holes from within a white circles

1 visualización (últimos 30 días)
arjun
arjun el 28 de Jul. de 2014
Comentada: arjun el 28 de Jul. de 2014
Hey, I want to remove the black patches that occur within the white circles, i tries using imfill(,'holes') but it turns the whole image white. I don't understand whats happening. Thanks

Respuesta aceptada

Image Analyst
Image Analyst el 28 de Jul. de 2014
You have white stuff around the border of the image, which means that everything will get filled. So call imclearborder first
binaryImage = imclearborder(binaryImage);
binaryImage = imfill(binaryImage, 'holes');
If you need to put the white border back, let me know.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by