Dear Slicer community,
I follow the instructions to create a Slicer extension and ask for your input to avoid overlap or missing already available work.
Motivation
For the current treatment response assessment criteria, e.g., for Glioblastoma, the contrast-enhancing tumor size is assessed by radiologists by measuring the longest diameter on axial slices inside the enhancement. Subsequently, the longest perpendicular diameter to this first one is measured. The product of these two diameters is used as a surrogate for the tumor burden (Macdonald criteria). This two-dimensional metric is highly shape-dependent and sensitive to different head positions across follow-up scans. Tumor volume is currently rarely used due to the time-consuming nature of manual segmentation.
With the success of automated segmentation tools, we hope to move on to fully volumetric evaluation. To validate volumetry, we need to compare our response assessment to previous results obtained by the 2D method and carefully validate progression thresholds.
For a publication we are preparing, I wrote Python code to automate the 2D measurement based on a segmentation and visualize it. Since I used SimpleITK, I hope it would be relatively straightforward to implement a scripted module.
Outline
The user loads a series of images and segmentations. The module should allow an assignment of the image/segmentation pairs to different follow-ups (e.g., similar to the ChangeTracker extension). The automated measurement is performed, changes plotted, and the two perpendicular measurements visualized.
Additionally, I’m thinking about implementing a tool to force perpendicular diameters for manual measurements, since in my experience, the perpendicularity strictness of radiologists’ measurements differs widely.
Here’s an example of how the current pipeline’s output, which I would like to extend and create a Slicer module for.
Happy to get your thoughts or pointers to existing work