Is it possible to fill the kink at 4 o'clock in this image?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Pranaya Kansakar
el 17 de Jun. de 2020
Respondida: Image Analyst
el 18 de Jun. de 2020
I have a BW image that's nearly circular, save the dent on the right side. Is it possible to fill this dent?

Also, is the segmentation on the second image good? Could you provide your thoughts?
Thanks!

0 comentarios
Respuesta aceptada
Image Analyst
el 18 de Jun. de 2020
I'd call imfill, then bwareafilt(mask, 1) to get the largest blob.
mask = imfill(mask, 'holes');
mask = bwareafilt(mask, 1);
Then call bwboundaries and use the FAQ to fit it to a circle.
boundaries = bwboundaries(mask);
boundaries = boundaries{1};
x = boundaries(:, 2);
y = boundaries(:, 1);
Then use poly2mask to make a mask of the perfect/fit circle and AND the two
[rows, columns] = size(mask);
circleMask = poly2mask(xCircle, yCircle, rows, columns);
outputMask = mask & circleMask;
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!