You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the rootlet model segments only dorsal rootlets (the model is nnUNet-based and segments cervical dorsal rootlets (C2-C8, i.e., 7 classes)).
It would be great to extend the model to segment ventral rootlets as well:
Steps:
Identify T2w images with well visible ventral rootlets.
Run prediction using the current M5 fold_all model to segment dorsal rootlets.
Manually segment ventral rootlets (labeling tutorial here). As in the case of dorsal rootlets, the ventral rootlets segmentation should be level-specific (e.g., "2" for C2, "3" for C3). Point for discussion: do we want to have the same or different classes (voxel values) for dorsal and ventral rootlets? Different classes would increase the model complexity (two times more classes). Alternatively, we can separate dorsal and ventral (and possibly also right and left) rootlets using post-processing.
Train a nnUNet/MONAI model to segment both dorsal and ventral rootlets.
Compare the performance of the nnUNet/MONAI model segmenting both dorsal and ventral rootlets and the current nnUNet model segmenting only dorsal rootlets.
Evaluate the variability in positioning in the S-I direction of the rostral/caudal rootlets between ventral dorsal and right/left across subjects.
The text was updated successfully, but these errors were encountered:
An idea from @naga-karthik on how to potentially segment ventral rootlets automatically: retrain the model on dorsal rootlets without A-P flipping augmentation. Then, before running the inference, flip an image along the A-P axis (sct_image -i sub-001_T2w.nii.gz -flip y -o sub-001_T2w_flip_y.nii.gz).
Why do you want to train a MONAI model now instead of the nnunet you were doing?
Mainly to move all the models to MONAI to reduce the number of SCT dependencies. Also, it seems that the inference of MONAI's models is faster compared to nnUNet.
Context
TODO
Methods
Currently, the rootlet model segments only dorsal rootlets (the model is nnUNet-based and segments cervical dorsal rootlets (C2-C8, i.e., 7 classes)).
It would be great to extend the model to segment ventral rootlets as well:
Steps:
Possible open-source datasets:
Possible internal datasets:
canproco
- cervical spine, 0.8x0.5x0.5 mmwhole-spine
- whole spine, iso 1 mmmarseille-rootlets
- cervical spine, iso 0.8 mmtwh-rootlets
- cervical spine, 0.4x0.3x0.4 mmThe text was updated successfully, but these errors were encountered: