Skip to content

mercure-imaging/mercure-totalsegmentator

Repository files navigation

mercure-totalsegmentator


Mercure module to deploy TotalSegmentator tool for segmentation of 104 classes in CT images and 56 classes in MR images. This module runs as a docker container in mercure, it can be added to an existing mercure installation using docker tag : mercureimaging/mercure-totalsegmentator:v2.
The current version of the module is configured to run the TotalSegmentator at a lower resolution (3mm) if only CPU is available and at high resolution when GPU (cuda device) is available. Also, the pipeline will automatically run the correct subcommand for TotalSegmentator depending on whether the input data is 'CT' or 'MR'.

Installation


Add module to existing Mercure installation

Follow instructions on Mercure website on how to add a new module. Use the docker tag mercureimaging/mercure-totalsegmentator:v2.


Install new Mercure test environment and deploy totalsegmentator module


Install virtual box and vagrant and follow jupyter notebook tutorial tutorial_mercure-totalsegmentator.ipynb (less than 1hr to complete).


Build module for local testing and development

  1. Clone repo.
  2. Build Docker container locally by running make (modify makefile with new docker tag as needed).
  3. Test container :
    docker run -it -v /input_data:/input -v /output_data:/output --env MERCURE_IN_DIR=/input --env MERCURE_OUT_DIR=/output --shm-size 1G *docker-tag*

Note

  • The default shared memory (shm) size for Docker container might not be sufficient to run the container. Thus, --shm-size 1G is included in the above command. Similarly, when configuring this module in Mercure, add the following as one of the docker arguments: "shm_size": "1G"

  • If using Vagrant, ensure enough memory is allocated in the Vagrantfile, as the memory requirements can be quite high when using TotalSegmentator.

    config.vm.provider "virtualbox" do |vb|
       vb.memory = "24576"
       vb.cpus = 6
    end
    
  • The container can take quite some time to finish (especially if not using GPU). Still, if it appears stuck for a long time even after trying with a small subset of data, it can be due to incompatible versions of the packages, while doing local development. Due to that, the predictions do not get saved and the next operator keeps on waiting. You can step inside the container and run the code directly to verify what is going on:

    docker run -it -v /input_data:/input -v /output_data:/output --env MERCURE_IN_DIR=/input --env MERCURE_OUT_DIR=/output --shm-size 1G *docker-tag* bash

    With that, you will step inside the Docker container and then after that:

    python mercure-totalsegmentator -i $MERCURE_IN_DIR -o $MERCURE_OUT_DIR


Output


Segmentations are written to specified output directory in three different formats :

  • DICOM RTSTRUCT ( with segmentated VOI volume ( mm3 ) in description field )
  • DICOM SEG
  • DICOM RGB ( with masks of each VOI overlaid )


image.png



Acknowledgments


MAP operators and code adapted from GSTT-CSC TotalSegmentator-AIDE repository: https://github.com/GSTT-CSC/TotalSegmentator-AIDE

About

mercure module for segmentation of 104 classes in CT images.

Resources

Stars

Watchers

Forks

Packages

No packages published