livermask / README.md
andreped's picture
Update README.md
aeb290a
|
raw
history blame
2.03 kB

Automatic liver segmentation in CT using deep learning

license

Pretrained U-Net model is automatically downloaded when running the inference script and can be used as you wish, ENJOY! :)

Install

pip install git+https://github.com/andreped/livermask.git

Usage:

livermask --input path-to-nifti.nii --output path-to-output-file.nii

In addition, there is the optional --cpu action to disable the GPU (force computations on CPU only) if necessary.

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.

Acknowledgements

The model was trained on the LITS dataset. The dataset is openly accessible and can be downloaded from here. If this tool is used, please, consider citing the corresponding LITS challenge dataset paper.

Disclaimer, I have no affiliation with the LITS challenge, the LITS dataset, or the challenge paper. I only wish to provide an open, free-to-use tool that people may find useful :)


Made with :heart: and python