livermask / README.md
andreped's picture
Update README.md
819246a

Automatic liver segmentation in CT using deep learning

license

Trained U-Net on the LITS dataset is automatically downloaded when running the inference script and can be used as you wish, ENJOY! :)

The figure shows a predicted liver mask with the corresponding patient CT in 3DSlicer. It is the Volume-10 from the LITS17 dataset.

Credit

The LITS dataset can be accessible from here, and the corresponding paper for the challenge (Bilic. P et al.. (2019). The Liver Tumor Segmentation Benchmark (LiTS). https://arxiv.org/abs/1901.04056). If trained model is used please cite this paper.

Usage:

git clone https://github.com/andreped/livermask.git
cd livermask
python -m venv venv
python -m pip install -r /path/to/requirements.txt
cd livermask
python livermask.py "path_to_ct_nifti.nii" "output_name.nii"

If you lack any modules after, try installing them through setup.py (could be done instead of using requirements.txt):

pip install wheel
python setup.py bdist_wheel

DICOM/NIfTI format

Pipeline assumes input is in the NIfTI format, and output a binary volume in the same format (.nii). DICOM can be converted to NIfTI using the CLI dcm2niix, as such:

dcm2niix -s y -m y -d 1 "path_to_CT_folder" "output_name"

Note that "-d 1" assumed that "path_to_CT_folder" is the folder just before the set of DICOM scans you want to import and convert. This can be removed if you want to convert multiple ones at the same time. It is possible to set "." for "output_name", which in theory should output a file with the same name as the DICOM folder, but that doesn't seem to happen...

Troubleshooting

You might have issues downloading the model when using VPN. If any issues are observed, try to disable VPN and try again.


Made with :heart: and python