Simultaneous segmentation of multiple vertebral bodies

Dear Slicer Support Team,

i am looking for a convenient method to simultaneously segment multiple vertebral bodies, similar as seen in this youtube tutorial on serial smooth of the segmentations:

Is there a tutorial video how to do so? The goal is to get a separate segmentation for each vertebral body.

Thank you very much.
Siegmund

Depending on what you consider “convenient”, my PhD project could fit the bill. Here is a slightly updated version of source code on GitHub, paper and project background.

A group from Magdeburg continued research in the same direction, here are some papers:

Spine segmentation from CT is easier and usually yields better results. References in the above papers are a good starting point.

A good general purpose tool which can be applied to spine segmentation is “grow from seeds” segmentation effect in Slicer’s SegmentEditor. Here is an example of seeds and the result:


These seeds are placed just to demonstrate the method, I was not attempting to make a good segmentation. But I think this is a viable method, and it has been part of Slicer for a while now.

1 Like

Dear Dženan Zukić,

thank you for the quick and substantiated answer. And congratulations on your most interesting PhD project. I am a trauma surgeon and we are initializing a project, aiming to integrate 3D segmentation in our clinical research. Your advice and the proposed papers help a lot.

I have found a slicer extension for the automatic segmentation of the cervical spine. Would a similar feature be conceivable for the thoraco-lumbar spine?

I guess asking the author of this extension to add support for thoracic and lumbar spine would make sense. I don’t know whether he still actively works on the project or maintains this extension. You could perhaps ask him directly? His email address could be found in the git log of the extension. I don’t know whether he has a forum profile, and if so what is his username.

We created that model using “Grow from seeds” effect, similarly to how @dzenanz described above, with two additions for CT:

  • On CT images you can see the facet joints as well, and there usually no clear separation between the vertebrae, so it is important to set an “Editable intensity range” (from about 150-250HU to maximum) using Threshold effect, to restrict region growing to bone region. The editable intensity range makes painting the seeds easier (you don’t need to worry about painting into soft tissue) and must be done before starting Grow from seeds.
  • Cancellous bone inside vertebrae have the same density as soft tissues, therefore the bones will appear hollow after segmentation. You can fill all internal holes using this code snippet (after clicking “Apply” in Grow from seeds effect).

I captured a screen capture video of how I do this:

The goal of the video was to keep it short. As always, you can get more accurate segmentation by spending more time with reviewing and correcting automatic segmentation results.

2 Likes