Open curve markup+cross-section analysis:an optional way of the centerline extraction and measurement of vessel?

Now in 3D slicer, the best way for the measurement of aorta is segmentation + centerline extraction + cross-section analysis, however, it is not fitted for some type of aortic disease (intramural hematoma for example), and not fitted for CTA with low quality, other software (such as osirix/3 mensio) offer a better way, recently i find that open curve markup+cross-section analysis was similar to the way of osirix and 3 mensio, but i’m not sure if it is reasonable in technical aspect, and i wonder if it is possible to make this combination a semi-auto workflow? thanks for your answer!


You might segment the hematoma, merge the two models and compute a new centerline. Now segmenting anything with low intensity may be challenging and not repeatable.

1 Like

Slicer offers various segmentation tools which can make your centerline extraction much faster if the contrast compared to surrounding structures is good. If you have incomplete filling or low contrast then it may be easier to just draw the open curve manually instead of spending time with segmentation. You can decide which approach is more appropriate for each case.

You can also implement a simple Python scripted module that brings together features from multiple modules: single-click vessel segmentation from Segment Editor’s Local threshold effect, followed by automatic centerline extraction, and curved planar reformatting or cross-section analysis. This would allow you to complete your workflow without switching between modules, with minimum number of clicks.

thanks, my problem was solved

As an exercise, I segmented manually the thrombus of a complex abdominal aortic aneurysm, and its lumen, as shown below.

It involved :

  • local threshold, for the contrasted lumen
  • threshold, for masking the thrombus intensities
  • paint the thrombus manually
  • remove small islands
  • fill holes, with the model conversion steps
  • smoothing
  • logical operation, to add the lumen and thrombus segments
  • centerline extraction

It took about 30 minutes. It should be shorter for less complex structures, or for small amount of thrombus as in your image.

My conclusion is that it’s more satisfactory than expecting a fully algorithmic method (kind of, it’s always complex code behind the scene). It may even be shorter that correcting leaks of fully algorithmic tools like Grow from seeds or Flood filling.

It’s not a magical approach, and cannot be used on a daily basis, but on a per-case basis. At least, the expected final result is there.

Regards.

the result is good, but as you said, it is for case, not for daily basis, the approach I said provided a reasonable and faster way, it is fitted especially when you have hundreds of cases to handle, thanks anyway

Note that if you know what exactly you want to do then you can probably automate the process that @chir.set described so that you can complete it in a few minutes instead of 30 minutes. We did this for example for the COVID lung CT segmentation module.

For this, you need to develop a custom module that leads the user through the workflow and automates the steps as much as possible. Developing such a module could take a few days, may be up to a few weeks (if you want a lot of features or if the software developer is new to Slicer). The cost of this development should be negligible if you want to use this tool on a daily basis.