Segmenting pulmonary fibrosis

I was asked to create a model of pulmonary fibrosis (3D-printing). It’s easy to see the structure of cells and thin walls on the images, but it is difficult to segment this structure.

Cells drawn by hand

Interpolated and non-interpolated view

NoInterpolate

As you can see with non-interpolated pixels, the walls are not clearly defined so thresholding is difficult. What should I do? I have some ideas:

  • Create a volume with higher pixel resolution and interpolate the pixels so it looks like the interpolated view. How can this be done in Slicer?
  • Sharpen the image so that the structure becomes clearer. How can this be done in Slicer? Is there a useful filter in ITK Simple Filters?

You can try my project here.

See here.

Yes, there are many ITK filters available in Simple Filters module that may be used for sharpening. For example, type sharp or anisotropic into the search field to find relevant filters. You can also ask advice for filter selection in the ITK forum.

You can learn more about segmentation in Slicer here.

1 Like

Thank you. The Slicer documentation has become better, I see.

Your link tells you how to increase the resolution of the segmentation volume (binary label map). This lets me segment with better details. However, when doing a thresholding from the original volume, the details in the segmentation volume will not increase since it uses a volume with less resolution as basis.

If you take a look at the interpolated image above, the walls between the cells looks more defined. Therefore I want to know if I can create a new volume with higher resolution containing the interpolated pixels (so it looks like the interpolated image)? My plan was to then use some filter to sharpen the walls, and then do the segmentation (thresholding).

See “Option A” at the link provided above.