A python package for DICOM to NifTi and NifTi to DICOM-SEG and GSPS conversion
Project description
Nekton
A python package for DICOM to NifTi and NifTi to DICOM-SEG and GSPS conversion
SETUP
The python package is available for use on PyPI. It can be setup simply via pip
pip install nekton
To the check the setup, simply check the version number of the nekton
package by
python -c 'import nekton; print(nekton.__version__)'
DICOM to NifTi
The DICOM to NifTi conversion in the package is based on a wrapper around the dcm2niix software.
Usage
from nekton.dcm2nii import Dcm2Nii
converter = Dcm2Nii()
converted_files = converter.run(dicom_directory='/test_files/CT5N', out_directory='/test_files/CT5N', name='Test')
# Converted 5 DCM to Nifti; Output stored @ /test_files/CT5N
print(converted_files)
# ['/test_files/CT5N/Test_SmartScore_-_Gated_0.5_sec_20010101000000_5.nii.gz']
Parameters converter.run
:
dicom_directory (Path)
: path to directory with Dicomsdicom_directory (Path, optional)
: directory to store the output niftiname (str, optional)
: Name to be given to the output file. Defaults to "".
Returns:
List[Path]
: output list of Nifti files
Notes
- The renaming functionality retains the suffixes from the original program.
- The BIDS sidecar json is retained as well.
NifTi to DICOM-SEG
The NifTi to DICOM-SEG within nekton converts incoming segmentation NifTi to DICOM-SEG. The matching of the segmentation index to a text label is
done via json file using the schema suggested by dcmqi
. The json can be generated using the gui also an example can be seen here.
Currently, nekton
supports creation of multiclass DICOM-SEG of two types-
- single layer DICOM-SEG, where each non-empty slice has an individual file
- multi layer DICOM-SEG, where all the n slices are rolled into a single file
Usage
- NifTi to single layer DICOM-SEG
from nekton.nii2dcm import Nii2DcmSeg
import glob
converter = Nii2DcmSeg()
path_dcms = [path for path in glob.glob(dir_dcms)]
path_mapping = "mapping.json"
path_seg_nifti = "CT5N_segmentation.nii.gz"
dcmsegs = converter_dcmseg.multiclass_converter(
segfile = path_seg_nifti, segMapping= path_mapping, dcmfiles =path_dcms, multiLayer=False
)
print (len(dcmsegs))
# 3
- NifTi to multi layer DICOM-SEG
from nekton.nii2dcm import Nii2DcmSeg
import glob
converter = Nii2DcmSeg()
path_dcms = [path for path in glob.glob(dir_dcms)]
path_mapping = "mapping.json"
path_seg_nifti = "CT5N_segmentation.nii.gz"
dcmsegs = converter.multiclass_converter(
segfile = path_seg_nifti, segMapping= path_mapping, dcmfiles =path_dcms, multiLayer=True
)
print (len(dcmsegs))
# 1
Parameters converter.multiclass_converter
:
segfile (Path)
: path to the nifti segmentation filesegMapping (Path)
: path to the dcmqii format segmentation mapping jsondcmfiles (List[Path])
: list of paths of all the source dicom filesmultiLayer (bool, optional)
: create a single multilayer dicomseg. Defaults to False.
Returns:
List[Path]
: list of paths of all generated dicomseg files
Notes
- Multilabel NifTi(in the form of a NifTi file for a single label) to DICOM-SEG is under development.
NifTi to GSPS
This feature will be available in a future release of the nekton
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nekton-0.2.6rc3.tar.gz
.
File metadata
- Download URL: nekton-0.2.6rc3.tar.gz
- Upload date:
- Size: 5.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.1 CPython/3.9.14 Linux/5.15.0-52-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e87f6250fb4358afcd3e181e54aa9483c09088619129c1e5141bbd2b1d37aadc |
|
MD5 | e28197721a12f74712555f9d36691936 |
|
BLAKE2b-256 | 25b43ebfd754f70710d000a264dd5d531c3af947ab4809dce6d2f085b228af60 |
File details
Details for the file nekton-0.2.6rc3-py3-none-any.whl
.
File metadata
- Download URL: nekton-0.2.6rc3-py3-none-any.whl
- Upload date:
- Size: 5.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.1 CPython/3.9.14 Linux/5.15.0-52-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 94a3d36a4aee8669f0167968cc563c36d26ca02b1f35ebfa1d8f3681bc48d395 |
|
MD5 | 87816563dabd9cfaf397217001b7b1ef |
|
BLAKE2b-256 | 6084ee94d0e93e8f900d581fb81f93c196fc13d91da05e72448e74cef44d48f4 |