Tooth segmentation

I am struggling to find a segmentation solution to isolate from an CBCT a tooth from a teeth. But I didn’t found any example of how to do this using SimpleITK/ITK. Can you point me a starting of how to achieve this task ? Is important to me to solve this. Can you help me ?

Hi,

Check this example.

Also you can use split volume effect to separate individual teeth once you segment them out.

Hi Manjula. I appreciated your post. That example reveal how to segment a tooth with 3DSlicer. I saw that you have done that segmentation and you solved your task. For you has been enough doing that in 3DSlicer, but my task is to do that inside my VC++ application … so, is there a way to do that segmentation in my app from 3DSlicer ? The source code is huge, and I don’t think I can find the code that do the proper segmentation … I guess … did you identified the code source that done segmentation ?

I am sorry i will not be able to help in that part as i have not gone through the c++ code of slicer as i don’t understand it. But others here will help you for sure with that.

If this is a homework assignment then sure, it is a good idea to create your own application so that you learn how things work. You can study the source code of 3D Slicer and feel free to take whatever you find useful.

If you are developing a research application or product then developing your own application from scratch is huge waste of time that prevents you from focusing on the things that matter. If you want to have a robust and feature rich application then you typically very soon reach the point that all your efforts are spent on maintenance and support.

If you just want to have “something quick and simple” then forget desktop applications. Today people expect that they can do simple things in their web browser and refuse to install a desktop application for that.

This is a common misconception. Actually, Slicer source code is tiny:

image

If your application uses Qt, VTK, ITK, DCMTK then your application is already 85% the same as Slicer.

3 Likes

@lassoan Can you point me the proper filter to do a teeth segmentation ? I ask that because maybe I can find in the slicer source code that filter … in order to read it and understand it and to apply it on myself :slight_smile: