High quality segmentation of the orbital walls

Operating system- Windows 10
Slicer version- 4.8.1

Hello friends,

I would be grateful for your help in solving the following issue- I am having poor results modeling the orbital walls of the skull. After using a threshold segmentation, the orbital walls are filled with many holes.

Following a tip from other thread (link), I tried to get better results using the crop volume module (Interpolated cropping + B-spline) before doing a threshold segmentation, and yet, the model is not in the required quality (see picture below).

Do you have ideas for a better workflow?
Or there is no much to do, except post-processing the model in other program (like meshmixer)?

Thank you in progress,
Itamar

image

From https://discourse.slicer.org/t/segmentation-of-thin-surfaces/2332/2:

We had very similar problem when segmenting thin orbital bone. Couple of things that helped:

Crop and resample your volume to make the structures that you want to segment at least 4-5 voxel wide. Otherwise all the region-growing based method will fail, as due to random noise a few voxels may be missed and your structure may break to parts.
Apply filtering, which enhances thin structures. We have found that unsharp masking helped.
If the structure that you need to represent is a surface then instead of a volumetric representation, you may try to reconstruct a surface from points. See this complete example3 that works in Slicer as is, See also these additional VTK examples: Poisson surface reconstruction3, comparison of 3 surface reconstruction methods that are available in VTK2. If this approach works well then let me know and I can make a segment editor effect from it.
You may paint the structure manually on a couple of (non-neighbor) slices and use Fill between slices effect to create a complete segmentation out of it.

I think you can crop the orbital as a single one by ROI, and then try to follow the method from Andras Lasso Segmentation of thin surfaces.
If you succeed please let me know and post some useful picture for the procedure.
Thanks.

1 Like

Orbital wall segmentation is very challenging. We have developed a semi-automatic method (described in this Masters thesis) in collaboration with Cari Whyne’s group at Sunnybrook, which fulfilled the clinical requirements for custom 3D-printed surgical guide design, but of course it could be still improved.

Meshmixer, Blender, and other modeling tools are great for modeling and mesh editing. However, a fundamental limitation of using them for “fixing” medical image segmentations is that these modeling software cannot show you the original volumetric image along with the mesh. Therefore, after you finished cleaning up the surface model, you must still read it back into Slicer (or similar medical image visualization software) to verify that the mesh is correct, and make further corrections as needed. You may repeat this process several times, until the end result is acceptable. This workflow is quite inefficient, and since you probably import images from DICOM and perform initial segmentation in Slicer anyway, it just make more sense to do all further post-processing, review, and fixing in Slicer.

1 Like

I am a slicer newbie and have no comment on anything sophisticated with the program. However the orbital floor and walls are extremely this as is the post max sinus. I assumed that this was just from the thinness of the bones which the beam misses.

Yes, the problem is that the bone is thin, compared to the resolution of the CT image. The beam does not “miss” the bone, but voxels that are partially filled by bone have lower intensity value than voxels that only contain bone (this is known as partial volume effect). Due to noise and variance of voxel intensity in the image, these lower-intensity bone voxels may not be clearly distinguishable from other tissues.

Thank you all!! I will try to apply and publish any usful results