Skip to main content

TotalSpineSeg is a tool for automatic instance segmentation and labeling of all vertebrae, intervertebral discs (IVDs), spinal cord, and spinal canal in MRI images.

Project description

TotalSpineSeg

DOI

TotalSpineSeg is a tool for automatic instance segmentation of all vertebrae, intervertebral discs (IVDs), spinal cord, and spinal canal in MRI images. It is robust to various MRI contrasts, acquisition orientations, and resolutions. The model used in TotalSpineSeg is based on nnU-Net as the backbone for training and inference.

If you use this model, please cite our work:

Warszawer Y, Molinier N, Valošek J, Shirbint E, Benveniste PL, Achiron A, Eshaghi A and Cohen-Adad J. Fully Automatic Vertebrae and Spinal Cord Segmentation Using a Hybrid Approach Combining nnU-Net and Iterative Algorithm. Proceedings of the 32th Annual Meeting of ISMRM. 2024

Please also cite nnU-Net since our work is heavily based on it:

Isensee, F., Jaeger, P. F., Kohl, S. A., Petersen, J., & Maier-Hein, K. H. (2021). nnU-Net: a self-configuring method for deep learning-based biomedical image segmentation. Nature methods, 18(2), 203-211.

Thumbnail

Table of Contents

Model Description

TotalSpineSeg uses a hybrid approach that integrates nnU-Net with an iterative algorithm for instance segmentation and labeling of vertebrae, intervertebral discs (IVDs), spinal cord, and spinal canal. The process involves two main steps:

Step 1: An nnU-Net model (Dataset101) was trained to identify nine classes in total. This includes four main classes: spinal cord, spinal canal, IVDs, and vertebrae. Additionally, it identifies four specific IVDs: C2-C3, C7-T1, T12-L1, and L5-S, which represent key anatomical landmarks along the spine, as well as the C1 vertebra to determine whether the MRI images include C1 (Figure 1B). The output segmentation was processed using an iterative algorithm to extract individual IVDs (Figure 1C), from which the odd IVDs segmentation was extracted (Figure 1D).

Step 2: A second nnU-Net model (Dataset102) was trained to identify ten classes in total. This includes five main classes: spinal cord, spinal canal, IVDs, odd vertebrae, and even vertebrae. Additionally, it identifies four specific IVDs: C2-C3, C7-T1, T12-L1, and L5-S, which represent key anatomical landmarks along the spine, as well as the sacrum (Figure 1E). This model uses two input channels: the MRI image (Figure 1A) and the odd IVDs extracted from the first step (Figure 1D). The output segmentation was processed using an algorithm that assigns individual labels to each vertebra and IVD in the final segmentation (Figure 1F).

For comparison, we also trained a single model (Dataset103) that outputs individual label values for each vertebra and IVD in a single step.

Figure 1

Figure 1: Illustration of the hybrid method for automatic segmentation of spinal structures. (A) MRI image used to train the Step 1 model. (B) The Step 1 model outputs nine classes. (C) Individual IVDs extracted from the output labels. (D) Odd IVDs extracted from the individual IVDs. (E) MRI image and odd IVDs used as inputs to train the Step 2 model, which outputs ten classes. (F) Final segmentation with individual labels for each vertebra and IVD.

Datasets

The totalspineseg model was trained on these 3 main datasets:

  • Private whole-spine dataset (Internal access: git@data.neuro.polymtl.ca:datasets/whole-spine.git).
  • SPIDER project dataset (Internal access: git@data.neuro.polymtl.ca:datasets/spider-challenge-2023.git)
  • Spine Generic Project, including single and multi subject datasets (Public access: git@github.com:spine-generic/data-single-subject.git and git@github.com:spine-generic/data-multi-subject.git).

We used manual labels from the SPIDER dataset. For other datasets, we generated initial labels by registering MRIs to the PAM50 template using Spinal Cord Toolbox (SCT). We trained an initial segmentation model with these labels, applied it to the datasets, and manually corrected the outputs using 3D Slicer.

Additional public datasets were used during this project to generate sacrum segmentations:

  • GoldAtlas (Internal access: git@data.neuro.polymtl.ca:datasets/goldatlas.git)
  • SynthRAD2023 (Internal access: git@data.neuro.polymtl.ca:datasets/synthrad-challenge-2023.git)
  • MRSpineSeg (Internal access: git@data.neuro.polymtl.ca:datasets/mrspineseg-challenge-2021.git)

When not available, sacrum segmentations were generated using the totalsegmentator model. For more information, please see this issue.

Dependencies

  • bash terminal
  • Python >= 3.9, with pip >= 23 and setuptools >= 67

Installation

  1. Open a bash terminal in the directory where you want to work.

  2. Create the installation directory:

mkdir TotalSpineSeg
cd TotalSpineSeg
  1. Create and activate a virtual environment (highly recommended):
python3 -m venv venv
source venv/bin/activate
  1. Install this repository using one of the following options:

    • Git clone (for developpers)
    git clone https://github.com/neuropoly/totalspineseg.git
    python3 -m pip install -e totalspineseg
    
    • PyPI installation (for inference only)
    pip install totalspineseg
    
  2. For CUDA GPU support, install PyTorch following the instructions on their website. Be sure to add the --upgrade flag to your installation command to replace any existing PyTorch installation. Example:

python3 -m pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118 --upgrade

Training

To train the TotalSpineSeg model, you will need the following hardware specifications:

  • Approximately 3.5TB of available disk space (for training with data augmentation)
  • RAM capacity of at least 32GB
  • CUDA GPU with at least 8GB of VRAM

Please ensure that your system meets these requirements before proceeding with the training process.

  1. Make sure that the bash terminal is opened with the virtual environment (if used) activated (using source <path to installation directory>/venv/bin/activate).

  2. Ensure training dependencies are installed:

apt-get install git git-annex jq -y
  1. Set the path to TotalSpineSeg and data folders in the virtual environment:
mkdir data
export TOTALSPINESEG="$(realpath totalspineseg)"
export TOTALSPINESEG_DATA="$(realpath data)"
echo "export TOTALSPINESEG=\"$TOTALSPINESEG\"" >> venv/bin/activate
echo "export TOTALSPINESEG_DATA=\"$TOTALSPINESEG_DATA\"" >> venv/bin/activate
  1. Download the required datasets into $TOTALSPINESEG_DATA/bids (make sure you have access to the specified repositories):
bash "$TOTALSPINESEG"/scripts/download_datasets.sh
  1. Temporary step (until all labels are pushed into the repositories) - Download labels into $TOTALSPINESEG_DATA/bids:
curl -L -O https://github.com/neuropoly/totalspineseg/releases/download/labels/labels_iso_bids_0924.zip
unzip -qo labels_iso_bids_0924.zip -d "$TOTALSPINESEG_DATA"
rm labels_iso_bids_0924.zip
  1. Prepare datasets in nnUNetv2 structure into $TOTALSPINESEG_DATA/nnUnet:
bash "$TOTALSPINESEG"/scripts/prepare_datasets.sh [DATASET_ID] [-noaug]

The script optionally accepts DATASET_ID as the first positional argument to specify the dataset to prepare. It can be either 101, 102, 103, or all. If all is specified, it will prepare all datasets (101, 102, 103). By default, it will prepare datasets 101 and 102.

Additionally, you can use the -noaug parameter to prepare the datasets without data augmentations.

  1. Train the model:
bash "$TOTALSPINESEG"/scripts/train.sh [DATASET_ID [FOLD]]

The script optionally accepts DATASET_ID as the first positional argument to specify the dataset to train. It can be either 101, 102, 103, or all. If all is specified, it will train all datasets (101, 102, 103). By default, it will train datasets 101 and 102.

Additionally, you can specify FOLD as the second positional argument to specify the fold. It can be either 0, 1, 2, 3, 4, 5 or all. By default, it will train with fold 0.

Inference

  1. Make sure that the bash terminal is opened with the virtual environment (if used) activated (using source <path to installation directory>/venv/bin/activate).

  2. Install the inference weights using this command (If you did not train a new model)

totalspineseg_init
  1. Run the model on a folder containing the images in .nii.gz format, or on a single .nii.gz file:
totalspineseg INPUT OUTPUT_FOLDER [--step1] [--iso]

This will process the images in INPUT or the single image and save the results in OUTPUT_FOLDER.

Important Note: By default, the output segmentations are resampled back to the input image space. If you prefer to obtain the outputs in the model's original 1mm isotropic resolution, especially useful for visualization purposes, we strongly recommend using the --iso argument.

Additionally, you can use the --step1 parameter to run only the step 1 model, which outputs a single label for all vertebrae, including the sacrum.

For more options, you can use the --help parameter:

totalspineseg --help

Output Data Structure:

output_folder/
├── input/                   # Preprocessed input images
├── preview/                 # Preview images for all steps
├── step1_raw/               # Raw outputs from step 1 model
├── step1_output/            # Results of iterative labeling algorithm for step 1
├── step1_cord/              # Spinal cord soft segmentations
├── step1_canal/             # Spinal canal soft segmentations
├── step1_levels/            # Single voxel in canal centerline at each IVD level
├── step2_raw/               # Raw outputs from step 2 model
└── step2_output/            # Results of iterative labeling algorithm for step 2 (final output)

Important Note: While TotalSpineSeg provides spinal cord segmentation, it is not intended to replace validated methods for cross-sectional area (CSA) analysis. The spinal cord segmentation from TotalSpineSeg has not been validated for CSA measurements, nor has it been tested on cases involving spinal cord compressions, MS lesions, or other spinal cord abnormalities. For accurate CSA analysis, we strongly recommend using the validated algorithms available in the Spinal Cord Toolbox.

Key points:

  • All segmentations in NIfTI (.nii.gz) format
  • Preview images in JPEG format
  • step1_levels: single voxel in canal centerline at each IVD level, numbered from C1 (1 above C1, 2 above C2, etc.)
  • step2_output: final labeled vertebrae, discs, cord, and canal

Localizer based labeling

TotalSpineSeg supports using localizer images to improve the labeling process, particularly useful for images with different fields of view (FOV) where landmarks like C1 and sacrum may not be visible. It uses localizer information to accurately label vertebrae and discs in the main image.

Localizer

Example of directory structure:

.
├── images/
│   ├── sub-01_T2w.nii.gz
│   └── sub-02_T2w.nii.gz
└── localizers/
    ├── sub-01_T1w.nii.gz
    └── sub-02_T1w.nii.gz

In this example, main images are placed in the images folder and corresponding localizer images in the localizers folder.

To use localizer-based labeling:

# Process localizer images. We recommend using the --iso flag for the localizer to ensure consistent resolution.
totalspineseg localizers localizers_output --iso

# Run model on main images using localizer output
totalspineseg images output --loc localizers_output/step2_output --suffix _T2w --loc-suffix _T1w
  • --loc: Specifies the path to the localizer output
  • --suffix: Suffix for the main images (e.g., "_T2w")
  • --loc-suffix: Suffix for the localizer images (e.g., "_T1w")

Note: If the localizer and main image files have the same names, you can omit the --suffix and --loc-suffix arguments.

Results

TotalSpineSeg demonstrates robust performance across a wide range of imaging parameters. Here are some examples of the model output:

Model Output Preview

The examples shown above include segmentation results on various contrasts (T1w, T2w, STIR, MTS, T2star, and even CT images), acquisition orientations (sagittal, axial), and resolutions.

List of Classes

Label Name
1 spinal_cord
2 spinal_canal
11 vertebrae_C1
12 vertebrae_C2
13 vertebrae_C3
14 vertebrae_C4
15 vertebrae_C5
16 vertebrae_C6
17 vertebrae_C7
21 vertebrae_T1
22 vertebrae_T2
23 vertebrae_T3
24 vertebrae_T4
25 vertebrae_T5
26 vertebrae_T6
27 vertebrae_T7
28 vertebrae_T8
29 vertebrae_T9
30 vertebrae_T10
31 vertebrae_T11
32 vertebrae_T12
41 vertebrae_L1
42 vertebrae_L2
43 vertebrae_L3
44 vertebrae_L4
45 vertebrae_L5
50 sacrum
63 disc_C2_C3
64 disc_C3_C4
65 disc_C4_C5
66 disc_C5_C6
67 disc_C6_C7
71 disc_C7_T1
72 disc_T1_T2
73 disc_T2_T3
74 disc_T3_T4
75 disc_T4_T5
76 disc_T5_T6
77 disc_T6_T7
78 disc_T7_T8
79 disc_T8_T9
80 disc_T9_T10
81 disc_T10_T11
82 disc_T11_T12
91 disc_T12_L1
92 disc_L1_L2
93 disc_L2_L3
94 disc_L3_L4
95 disc_L4_L5
100 disc_L5_S

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

totalspineseg-20241116.tar.gz (55.1 kB view details)

Uploaded Source

Built Distribution

totalspineseg-20241116-py3-none-any.whl (73.1 kB view details)

Uploaded Python 3

File details

Details for the file totalspineseg-20241116.tar.gz.

File metadata

  • Download URL: totalspineseg-20241116.tar.gz
  • Upload date:
  • Size: 55.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for totalspineseg-20241116.tar.gz
Algorithm Hash digest
SHA256 1244b63c0702db8587964f8fb8b22e39a746bf380be6888920e5cc411e41b9f2
MD5 1651e5502afdc446fb88202a3e6717f4
BLAKE2b-256 786f94f6bc3382796fe783719e988f9e129100c6e13ac2052e1b56749efafa0d

See more details on using hashes here.

File details

Details for the file totalspineseg-20241116-py3-none-any.whl.

File metadata

File hashes

Hashes for totalspineseg-20241116-py3-none-any.whl
Algorithm Hash digest
SHA256 6ed019e64999b8de33143e1d3329138dc9651ca8ee9337fd65160ffe1dfec1ba
MD5 a3f4dff0d3078be0eb562eda4ad0ed5b
BLAKE2b-256 098c72d7ab895bb1ca07fe80ce26502cda0c6b36b3dada04c90df5381551c712

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page