I hope it is ok :) thanks for your patience and time :)
How to extract more objects after watershed segmentation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Veronika Remenarova
el 1 de Dic. de 2018
Movida: Image Analyst
el 9 de Sept. de 2022
hello, i am trying to extract these two parts of tooth on this picture (penis and egg shapes). problem is that the tooth parts are surounded by bone, which is very similar to the tooth structure (similar intensity, eccentricity, perimeter, solidity). I am not able to find some parameter that is different with bone and tooth. Problem is that we have houndrends of images like this, where bone size / tooth size changes
should i try some filtering?
I am not able to succeed with regionprops.
Thank you

1 comentario
Respuesta aceptada
Image Analyst
el 1 de Dic. de 2018
Editada: Image Analyst
el 1 de Dic. de 2018
There are several things you could try to extract those two regions only. It might be a multi-step process. I could do it easily for this image, though I'm not sure it would work for other images. For example you could use
binaryImage = labeledImage> 0;
binaryImage = bwareafilt(binaryImage, 2);
Or you could try asking for solidity and Euler number.
Attach your labeled image in a .mat file if you need more help.
4 comentarios
Image Analyst
el 1 de Dic. de 2018
See attached.

Note that your labeled image does seem to connect to another region so you might try to improve your segmentation algorithm.
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
