Skip to main content

A python package for DICOM to NifTi and NifTi to DICOM-SEG and GSPS conversion

Project description

Nekton

Python Application TestingTest and Release Python VersionsPackage version

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', 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 Dicoms
  • name (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

  1. 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
  1. 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 file
  • segMapping (Path): path to the dcmqii format segmentation mapping json
  • dcmfiles (List[Path]): list of paths of all the source dicom files
  • multiLayer (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


Download files

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

Source Distribution

nekton-0.2.2.tar.gz (264.2 kB view details)

Uploaded Source

Built Distribution

nekton-0.2.2-py3-none-any.whl (264.8 kB view details)

Uploaded Python 3

File details

Details for the file nekton-0.2.2.tar.gz.

File metadata

  • Download URL: nekton-0.2.2.tar.gz
  • Upload date:
  • Size: 264.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for nekton-0.2.2.tar.gz
Algorithm Hash digest
SHA256 ffc4fff2107890cefe91b7ec3c4efe649d1e403e4b8626585958015dc15da027
MD5 91d3f31049c93776e5c124e113048590
BLAKE2b-256 984dbf3875026fd73779bd762047dc6bfcad5007262817815942f9450f4ed7a0

See more details on using hashes here.

File details

Details for the file nekton-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: nekton-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 264.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.12

File hashes

Hashes for nekton-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 69c4ae3cb58af1fa5173a9afe8a1dda43013907b1fa076b8ac1b22605dd10041
MD5 26527d7516294e5f4e4790bc8b217977
BLAKE2b-256 663f5377aeb3e34824ed6e2ec97f8241eac23395fc7f00b7791bb68ee4353151

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