Count the endpoints in a image
Mostrar comentarios más antiguos

How to count the number of endpoints as marked in this image.
I tried with bwmorph(endpoints). But my output is like this.

5 comentarios
Rik
el 14 de Oct. de 2020
What exact code steps did you use?
Malini
el 14 de Oct. de 2020
This time I edited your post for you. Next time, please use the tools explained on this page to make your question more readable.
If you read the documentation you see that it is meant to be run on a skeletonized image, so you need to do that first.
I= imread('Endpoints.png');
B= I(:,:,3)>128;
S= bwmorph(B,'skel');
E= bwmorph(S,'endpoints');
figure,imshow(E);
Malini
el 14 de Oct. de 2020
Rik
el 14 de Oct. de 2020
You could try imclose to close the gaps and smoothen your mask. Another possibility is to modify your initial mask creation.
Side note: if you want help with your specific images you will have to attach the originals.
Respuestas (0)
Categorías
Más información sobre Morphological Operations en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
