Skip to main content

DCM2NIIX Python package

Project description

dcm2niix

Build status

About

dcm2niix is designed to convert neuroimaging data from the DICOM format to the NIfTI format. This web page hosts the developmental source code - a compiled version for Linux, MacOS, and Windows of the most recent stable release is included with MRIcroGL. A full manual for this software is available in the form of a NITRC wiki.

The DICOM format is the standard image format generated by modern medical imaging devices. However, DICOM is very complicated and has been interpreted differently by different vendors. The NIfTI format is popular with scientists, it is very simple and explicit. However, this simplicity also imposes limitations (e.g. it demands equidistant slices). dcm2niix is also able to generate a BIDS JSON format sidecar which includes relevant information for brain scientists in a vendor agnostic and human readable form. The Neuroimaging DICOM and NIfTI Primer provides details.

JavaScript/WebAssembly

To view the WASM specific README, please click here. The rest of this README is for the dcm2niix CLI program.

License

This software is open source. The bulk of the code is covered by the BSD license. Some units are either public domain (nifti*.*, miniz.c) or use the MIT license (ujpeg.cpp). See the license.txt file for more details.

Dependencies

This software should run on macOS, Linux and Windows typically without requiring any other software. However, if you use dcm2niix to create gz-compressed images it will be faster if you have pigz installed. You can get a version of both dcm2niix and pigz compiled for your operating system by downloading MRIcroGL.

Image Conversion and Compression

DICOM provides many ways to store/compress image data, known as transfer syntaxes. The COMPILE.md file describes details on how to enable different options to provide support for more formats.

  • The base code includes support for raw, run-length encoded, and classic JPEG lossless decoding.
  • Lossy JPEG is handled by the included NanoJPEG. This support is modular: you can compile for libjpeg-turbo or disable it altogether.
  • JPEG-LS lossless support is optional, and can be provided by using CharLS.
  • JPEG2000 lossy and lossless support is optional, and can be provided using OpenJPEG or Jasper.
  • GZ compression (e.g. creating .nii.gz images) is optional, and can be provided using either the included miniz or the popular zlib. Of particular note, the Cloudflare zlib exploits modern hardware (available since 2008) for very rapid compression. Alternatively, you can compile dcm2niix without a gzip compressor. Regardless of how you compile dcm2niix, it can use the external program pigz for parallel compression.

Versions

See releases for recent release notes. See the VERSIONS.md file for details on earlier releases.

Contribute

dcm2niix is developed by the community for the community and everybody can become a part of the community.

Running

Command line usage is described in the NITRC wiki. The minimal command line call would be dcm2niix /path/to/dicom/folder. However, you may want to invoke additional options, for example the call dcm2niix -z y -f %p_%t_%s -o /path/output /path/to/dicom/folder will save data as gzip compressed, with the filename based on the protocol name (%p) acquisition time (%t) and DICOM series number (%s), with all files saved to the folder "output". For more help see help: dcm2niix -h.

See the BATCH.md file for instructions on using the batch processing version.

Install

There are a couple ways to install dcm2niix

  • Github Releases provides the latest compiled executables. This is an excellent option for MacOS and Windows users. However, the provided Linux executable requires a recent version of Linux (e.g. Ubuntu 14.04 or later), so the provided Unix executable is not suitable for very old distributions. Specifically, it requires Glibc 2.19 (from 2014) or later. Users of older systems can compile their own copy of dcm2niix or download the compiled version included with MRIcroGL Glibc 2.12 (from 2011, see below).
  • Run the following command to get the latest release version for Linux, Macintosh or Windows:
    • curl -fLO https://github.com/rordenlab/dcm2niix/releases/latest/download/dcm2niix_lnx.zip
    • curl -fLO https://github.com/rordenlab/dcm2niix/releases/latest/download/macos_dcm2niix.pkg
    • curl -fLO https://github.com/rordenlab/dcm2niix/releases/latest/download/dcm2niix_win.zip
  • Latest development version is available on AppVeyor for Linux, Macintosh or Windows.
  • MRIcroGL (NITRC) or MRIcroGL (GitHub) includes dcm2niix that can be run from the command line or from the graphical user interface (select the Import menu item). The Linux version of dcm2niix is compiled on a holy build box, so it should run on any Linux distribution.
  • If you have a MacOS computer with Homebrew or MacPorts you can run brew install dcm2niix or sudo port install dcm2niix, respectively.
  • If you have Conda, conda install -c conda-forge dcm2niix on Linux, MacOS or Windows.
  • If you have pip, python -m pip install dcm2niix on Linux, MacOS or Windows.
  • On Debian Linux computers you can run sudo apt-get install dcm2niix.

Build from source

It is often easier to download and install a precompiled version. However, you can also build from source.

Build command line version with cmake (Linux, MacOS, Windows)

cmake and pkg-config (optional) can be installed as follows:

Ubuntu: sudo apt-get install cmake pkg-config

MacOS: brew install cmake pkg-config or sudo port install cmake pkgconfig

Once these tools are available, you can compile with cmake:

git clone https://github.com/rordenlab/dcm2niix.git
cd dcm2niix
mkdir build && cd build
cmake -DZLIB_IMPLEMENTATION=Cloudflare -DUSE_JPEGLS=ON -DUSE_OPENJPEG=ON ..
make

dcm2niix will be created in the bin subfolder. To install on the system run make install instead of make - this will copy the executable to your path so you do not have to provide the full path to the executable.

In rare case if cmake fails with the message like "Generator: execution of make failed", it could be fixed by sudo ln -s `which make` /usr/bin/gmake.

Building the command line version without cmake

This is the simplest way to compile dcm2niix on a Linux or MacOS computer. Be warned that this minimal version will not be able to extract DICOM images compressed with the (rarely used) JPEG2000 or JPEG-LS formats.

git clone https://github.com/rordenlab/dcm2niix.git
cd dcm2niix/console
make
./dcm2niix

Referencing

  • Li X, Morgan PS, Ashburner J, Smith J, Rorden C (2016) The first step for neuroimaging data analysis: DICOM to NIfTI conversion. J Neurosci Methods. 264:47-56. doi: 10.1016/j.jneumeth.2016.03.001. PMID: 26945974

Alternatives

  • BIDS-converter hosts Matlab and Python scripts for PET images, supporting DICOM and ECAT (ecat2nii) formats.
  • dcm2nii is the predecessor of dcm2niix. It is deprecated for modern images, but does handle image formats that predate DICOM (proprietary Elscint, GE and Siemens formats).
  • Python dcmstack DICOM to Nifti conversion with meta data preservation.
  • dicm2nii is written in Matlab. The Matlab language makes this very scriptable.
  • dicom2nifti uses the scriptable Python wrapper utilizes the high performance GDCMCONV executables.
  • dicomtonifti leverages VTK.
  • dimon and to3d are included with AFNI.
  • dinifti is focused on conversion of classic Siemens DICOMs.
  • DWIConvert converts DICOM images to NRRD and NIfTI formats.
  • mcverter a great tool for classic DICOMs.
  • mri_convert is part of the popular FreeSurfer package.
  • MRtrix mrconvert is a useful general purpose image converter and handles DTI data well. It is an outstanding tool for modern Philips enhanced images.
  • nanconvert uses the ITK library to convert DICOM from GE and proprietary Bruker to standard formats like DICOM.
  • Plastimatch is a Swiss Army knife - it computes registration, image processing, statistics and it has a basic image format converter that can convert some DICOM images to NIfTI or NRRD.
  • Simple Dicom Reader 2 (Sdr2) uses dcmtk to read DICOM images and convert them to the NIfTI format.
  • SlicerHeart extension is specifically designed to help 3D Slicer support ultra sound (US) images stored as DICOM.
  • spec2nii converts MR spectroscopy to NIFTI.
  • SPM12 is one of the most popular tools in the field. It includes DICOM to NIfTI conversion. Being based on Matlab it is easy to script.

Links

dcm2niix is a core dependency of BIDS converters:

The following tools exploit dcm2niix

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

dcm2niix-1.0.20250506.tar.gz (545.2 kB view details)

Uploaded Source

Built Distributions

dcm2niix-1.0.20250506-cp313-cp313-win_amd64.whl (714.3 kB view details)

Uploaded CPython 3.13Windows x86-64

dcm2niix-1.0.20250506-cp313-cp313-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

dcm2niix-1.0.20250506-cp313-cp313-musllinux_1_2_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

dcm2niix-1.0.20250506-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

dcm2niix-1.0.20250506-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

dcm2niix-1.0.20250506-cp313-cp313-macosx_11_0_arm64.whl (505.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dcm2niix-1.0.20250506-cp313-cp313-macosx_10_13_x86_64.whl (558.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

dcm2niix-1.0.20250506-cp312-cp312-win_amd64.whl (714.3 kB view details)

Uploaded CPython 3.12Windows x86-64

dcm2niix-1.0.20250506-cp312-cp312-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

dcm2niix-1.0.20250506-cp312-cp312-musllinux_1_2_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

dcm2niix-1.0.20250506-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

dcm2niix-1.0.20250506-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

dcm2niix-1.0.20250506-cp312-cp312-macosx_11_0_arm64.whl (505.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dcm2niix-1.0.20250506-cp312-cp312-macosx_10_13_x86_64.whl (558.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

dcm2niix-1.0.20250506-cp311-cp311-win_amd64.whl (714.3 kB view details)

Uploaded CPython 3.11Windows x86-64

dcm2niix-1.0.20250506-cp311-cp311-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

dcm2niix-1.0.20250506-cp311-cp311-musllinux_1_2_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

dcm2niix-1.0.20250506-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

dcm2niix-1.0.20250506-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

dcm2niix-1.0.20250506-cp311-cp311-macosx_11_0_arm64.whl (505.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dcm2niix-1.0.20250506-cp311-cp311-macosx_10_9_x86_64.whl (557.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

dcm2niix-1.0.20250506-cp310-cp310-win_amd64.whl (714.3 kB view details)

Uploaded CPython 3.10Windows x86-64

dcm2niix-1.0.20250506-cp310-cp310-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

dcm2niix-1.0.20250506-cp310-cp310-musllinux_1_2_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

dcm2niix-1.0.20250506-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

dcm2niix-1.0.20250506-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

dcm2niix-1.0.20250506-cp310-cp310-macosx_11_0_arm64.whl (505.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dcm2niix-1.0.20250506-cp310-cp310-macosx_10_9_x86_64.whl (557.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

dcm2niix-1.0.20250506-cp39-cp39-win_amd64.whl (714.3 kB view details)

Uploaded CPython 3.9Windows x86-64

dcm2niix-1.0.20250506-cp39-cp39-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

dcm2niix-1.0.20250506-cp39-cp39-musllinux_1_2_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

dcm2niix-1.0.20250506-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

dcm2niix-1.0.20250506-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

dcm2niix-1.0.20250506-cp39-cp39-macosx_11_0_arm64.whl (505.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

dcm2niix-1.0.20250506-cp39-cp39-macosx_10_9_x86_64.whl (557.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

dcm2niix-1.0.20250506-cp38-cp38-win_amd64.whl (714.3 kB view details)

Uploaded CPython 3.8Windows x86-64

dcm2niix-1.0.20250506-cp38-cp38-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

dcm2niix-1.0.20250506-cp38-cp38-musllinux_1_2_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

dcm2niix-1.0.20250506-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

dcm2niix-1.0.20250506-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

dcm2niix-1.0.20250506-cp38-cp38-macosx_11_0_arm64.whl (505.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

dcm2niix-1.0.20250506-cp38-cp38-macosx_10_9_x86_64.whl (557.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

dcm2niix-1.0.20250506-cp37-cp37m-win_amd64.whl (714.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

dcm2niix-1.0.20250506-cp37-cp37m-musllinux_1_2_x86_64.whl (627.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

dcm2niix-1.0.20250506-cp37-cp37m-musllinux_1_2_aarch64.whl (630.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

dcm2niix-1.0.20250506-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

dcm2niix-1.0.20250506-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (578.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

dcm2niix-1.0.20250506-cp37-cp37m-macosx_10_9_x86_64.whl (557.3 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file dcm2niix-1.0.20250506.tar.gz.

File metadata

  • Download URL: dcm2niix-1.0.20250506.tar.gz
  • Upload date:
  • Size: 545.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for dcm2niix-1.0.20250506.tar.gz
Algorithm Hash digest
SHA256 f0bbdf030b6b84d2cdbd073904126ac10abd0afde2a52e266908437abf35c27c
MD5 03e84d62bf74eab8cef2670d7c787f2e
BLAKE2b-256 3e3c26646fa41e690c3141cf4e936fa7a6fd1caf511ab8795e93a6f658e0ef95

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a8e5e245012d0c3d3564d58e388dc953c11494a2f485a28410c35ab6989e8e53
MD5 a36fcafb3125c00813fb6d5ebe694cdb
BLAKE2b-256 1bb022572b7931a86e7d333ee25578d80d743c8e5d6f442e431d603eb80fa8b4

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 979e238f4dd0d5339dec40d400b9d507397fa61ef78a35ce80017aeb8fbea0f5
MD5 bc1c9310d16bc20b1a0a02e0cc5e5345
BLAKE2b-256 9297277e1be4cc06bfc6bee9a97b077a9ecf8ba058348afe71b51e51af82ada6

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fda042fa706fbcbc8f3950333a503a4fd1546abea4c32aec018770f0d3789725
MD5 a773f90480ebf0d2a346219634d839d5
BLAKE2b-256 027d3050c1b53466fefdcc9c0ab3b8cadd2f2c8f727d6044458870304cf1c9dc

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 534108ca2aa2f7f9be578caf22ba77cbc64e99ccdf82a7102ed15d610e8d8529
MD5 248a6256a9ee9ad3df732fcbf5b936bd
BLAKE2b-256 fba4ee67e1a7c496ba46aee597dad400972a33dee9ab38f066a6e5769f29904e

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1395cef3d27af2a3e806e2135d80f6cf1f1132f5d7acc0ac3ffcc22ee33a443
MD5 c4d1230aad02ebf6b7b390a03691d31e
BLAKE2b-256 8b9b6bc7cd89c9724c11739e89625e001528eae4cb1ff1ab4e3a4f55480e4f54

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4429c01176625dbba9c47f8e2072731183d20832cb17a7dd0d52f15a90301e99
MD5 1039e72ae45b10d275fdf2674c9aeb03
BLAKE2b-256 66c4849fc7f01794c513d1ecd84d0bbe3e9a201695efe17f909982236a7c36b3

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1550f9e30aff4e2d274f2ce814a28ff6ef65992022400f1f47d4e92afbb29af9
MD5 a155ade6477304694a285f9cd4b42d01
BLAKE2b-256 fbe7a69cb8696fc21515ce6630ecb1eb115bc5978719226c444547488936e298

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c65b876a5eafe45fe8be42a5770e80f893f232fe85c5aa3ac9692453722b43a0
MD5 8282b8605a5eab3f49475b8a9d94eadf
BLAKE2b-256 9722e0e29368897aae0e2e8dddc528813963f0cfa308dc0c994f88bf87552911

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4eafae2a7c74a84cb465d7288a20d4d08256163221f85cc09ad6dbbbd3933155
MD5 805098da4abce7f98d10bef2ba972ba2
BLAKE2b-256 256fcbbeca77a9bac59cc6f6c243a56a18a370c6fa03e380662d29faf1e587c2

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0c5ac38ee675985b3e27e44644e87d39eb37fb2ff5589f93b2960f5e32f2800
MD5 323a6efc205992cb5ea18cfc37fe92fd
BLAKE2b-256 1d5fc518c99b7ed4e439f73ee03da73c90fd865dc0a1731ac1f8ce4c31466c49

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3c9ca037696d379fcb6c65bd4f350b0e9f92a1ef66ec1bd30f7d6017f2a31c8
MD5 e74f95ff6b4386678390f2e7468a7aed
BLAKE2b-256 f5ce9406d41ad9f6488c84207a82e01dc420e2c4d1577ec007a92d5af57414d6

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91700a215f21e76d323fc31fb8eb43669ddfb75ab32c74a065fbc0c66ddfc37a
MD5 8f164552528693b9d61bdee50e7fb34a
BLAKE2b-256 f284d887bdf53fe99787548f86d969e70088c3fb913071336be251c945ac1d02

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fe472ea9bfaa117b7cc97826cfc853e245f1a900ac2abea4961f6631b103aa7
MD5 1d68f8a745ab245b90a48574cc3cd369
BLAKE2b-256 e365c8c79cd512ba9b37e1d774907631145e106446adb6e8f2631c6688d1caf2

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec5b6ac3ab94fb4b6e7a67aa83778a557928cafe8a13d3e9c9e803e2abf4e270
MD5 1c5c5d96b94a4697131f850f3a9cabd3
BLAKE2b-256 7c5e85565e2f116505fb1380778eee5f1c4d2e714fbac7f82f50902f7e23a9e8

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 143f98f0d585b2652c2f011c541d77d4d17d9ce50731bf913a7cc3780c48f375
MD5 bbb128ce70322185c4824d144e774322
BLAKE2b-256 7bae98336dba0bd93d5de0bd7a5b6fdaad787f91285d5b3bcfb2f19bddb84539

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9295b9e2c20c936ebbcf95347f6c96d71d433a6d5c0edeaa92639b75c0d5c755
MD5 199278fd51e2ab816a463945c239a251
BLAKE2b-256 66c1082559d4f7d0839e85e56b4de45e7351a6f62121bf5dd01f0012761c281a

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e41edda82a265a00b21ee56f517ef89f423d88c47019a19619e338a8320ea3ce
MD5 0797b220fe3773b1acfeec23a0791cc1
BLAKE2b-256 9ed4c0bc4d154fa5ed96758672e76962af10d4df3bac25467156cb69217d72a6

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a556df512b74d602774411fb4af1b5e23a0c01ccdea14ec0bf9ba1a2b8e22b8
MD5 6d7a85055b13f04228c7864f96ee6850
BLAKE2b-256 e8d98f18c87d31376fb448d642000d1cee4225205c96591860f19f48a70fb9d8

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ce62f124b0e9e07026387ac08d0b3528a7c0dbfe70e3cb2a67147ecfd0a1438
MD5 51373fb30c765f0e79942709bed46a66
BLAKE2b-256 954c49c37e072d8f33e00196e145760affecb39ef3191d3c9796238701eb74db

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc90c287f205a983af23fb6cf44d3f8bee648e07fbad565b87a8c81c256cc9cf
MD5 2b5617ef10804525f99f3322f5375bd4
BLAKE2b-256 6414a231e72be4b35ea6edaf3aee253089bbe589b0268b93fafcd3556946037b

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 616ec2a22d08e2cd7f2483501b9a984a471815d087340ff75060df7498c41a23
MD5 3411c1c3ac93f8cfcccb77bc9f40ba47
BLAKE2b-256 787462c2f9d2ff924cbdf2bcc79ad94f46133bb064d14b28f3e7920f138f7569

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3fa83025b90286e9bd3394b51be5d48521c521f166c7d088b10b134a41e7ae37
MD5 0313348b6c692f24486fa48268ebf97d
BLAKE2b-256 d32d467fdd5e73910291628419b6b505cf0e96c180e6e6db6a641a0419b8dd5d

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b76282cf6a67e2abcb8032db2c4548b0531370ca244eb8eda5062eff87275835
MD5 1c0b977bc0f6f7d0d86785dd5f38af23
BLAKE2b-256 073cb8a8b285518e0b64c5a11a02370958e076d4fc1a87cfc830d665a459fc79

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c54a0375b66feadda42167d303b935d7736ea66dc4d5593e5e412dba63350cec
MD5 3748949499b8d4d891aaf5dd630d1a06
BLAKE2b-256 da8adce97061b03530805f6def10465ebcbff99014c055aa89cee3d4031fc76c

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3d7835dae95e73e1e50dd77bca543b7c8776591f0827d6ec7eb42a69840aa70
MD5 46499e09c9778859131a08f773ba15a7
BLAKE2b-256 2076a9ddc6809159a7c554f4ea208a5d2901667721ef1f61b4497eccebcdb651

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef26d96b71525fbf068c0b2e0456d3c3bcafe8c7da99d5013e2f26244ded1ece
MD5 8f94847b2985b810a278b67c133c6e2d
BLAKE2b-256 b4d295c0a93ec68a8ecd55e9fe5cb7bc9d52f64eae54350aef394e71fb5921ba

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3950e5102d1186311aaca8541ff43d59fedc98905248b145be66a73092389731
MD5 d46223ec8816de00c9834117d6fc390c
BLAKE2b-256 cffa7d72c74d575537bb302ba7588202e63be5feb45cec67db0a13f2a5457474

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bd43806151aaa089957d6c7461081485746d2cf123e3e23eabd97cc58f5b2d2
MD5 c43291db613531c1ba175a4f4353c9a7
BLAKE2b-256 7b174657bc8dc1db2067861976444423c2cac2745dd85d9ef848e7eac97adaa0

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9099bd998b8bc9cf53d0db8284f5a2a76b89151832164c2c9596e515b6f07cd7
MD5 f4253457ebdfc2809cf32eebf0972932
BLAKE2b-256 aa9159e72b0e8ce334d29b0729b46947ab9b1bafd03fe81be8b50cf7ed5b2dc3

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0010c0054a5a64d2abef151ee2e61b357d9edaa67b2bbda14d90a39dff475280
MD5 78855b658d7476ccbd590398ac8b1aad
BLAKE2b-256 41cccf061323437157db1c4458f3cabb9e4ae6dbac66ebfd87d9f90fe1aea093

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86b9cb296449b9fb85d7df6da722b4083c6e9b7c26f1ea2b6e7a228903c1be83
MD5 5aa738df5cb0875319fe1ceb366e936b
BLAKE2b-256 e4087ced7142ffd670bc0fff73b379b3d52bd3f99acfaa87c05db6df7b836411

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a214c70842ae68bfb5bdbb965a2fed28487da46d0ec11f44fc7d02ef6f6c50bf
MD5 6fbabe383cf8e22a3b5d4a23877f4030
BLAKE2b-256 6dd8fda1ded94312459d9eb42525c2755399d14df3b67d9ccb23360ce6329d95

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9ec60eb9799b4043ae522e0995f4458d7d8850c13a0b40b99081ba8c0e2afc2
MD5 380d03c336421046f534c81a18571ba3
BLAKE2b-256 494c5abc50ae691c694eba7f76c085b0902159d2a2f3a186d2624ad5ad1d48df

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7eb849171f569e1f106fedc67c0cc3a6307d5e9cb5a02477c552418877adfc5e
MD5 85b8b4550d22ab61230ba7873f744f58
BLAKE2b-256 ad9d68c09f70cf8c654188ffbd5905450ae1caf9dbd82d554135260958baec6a

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 262f47626f2bf98f8b305ca72bc0224bdd103391039e3f59678c0baef90dfdb7
MD5 c740fcf421fb66c64ff4fefe10d901f3
BLAKE2b-256 8f952f25e340f53aa501d646604252a8f6c27dda97a9f0c9451d445695b524fb

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a0e1c64dc37f4fe676b89fc2e9c6731ebfae7195be70bf55180e162326148f25
MD5 f12c5fea44bf5bbb96cf1cb0e560c740
BLAKE2b-256 c15a2b8c28d7766c50ad152ce0771b34bce63faf060b19d52c84270ec3596afa

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9d8d507c74d457d5d4055980052f93d0873a5b20dd5efdb3152b5ecffe8c935
MD5 ce5d91fb424a6800dd73e1b1a59f6768
BLAKE2b-256 9a9240432602352b87160f3fd0acb45791aa2b49fe9676b47a349750e09a7613

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eeff8d13414aeb36da6ac85b31a356db1097f3e570d443e4367c86067f95a351
MD5 136f9555a35a3aea409d0bd8e32b0cb3
BLAKE2b-256 e85439a736b97cee0a4bbee2f35dc7b4dd408c11dd690c3b51d5f66fdbb33d5b

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8b9cf8a480842284116bd1cbe1cf39deb320e5fcdecadc3dd8526fd38703bab
MD5 748bc2a268b4e587d947ccb8a896de84
BLAKE2b-256 08126b0a2aadb44d24ed03c5d14ac8902bb494336a1e7903230a1f85461060a6

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c41ad1ba15fa6bb9e4c7348f0d2682dc0a6be4275be25683a7d95ba38c0d0a99
MD5 5c466820cfaad2ee1f1f972af9a99c65
BLAKE2b-256 d5956cc7cdd9d60d2bd3106f7db161f35e70d95e7e826fdb206b1413ef3104e2

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3054c2c0edc193980c16402433c474e9c2c6408bf48c70a589635f9583f0be9
MD5 d4f4482089287cf2fb1ced4e317241ef
BLAKE2b-256 bb3824b90af8e711ddeed0c6f2dc6bfcf225e54fe059929ed5d3426439229ce5

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82e17ffb2873f1a1d7fd9acc40f18cb3a06c0beb24ffd3a39dc53024a279c6fd
MD5 f5ee9775fa7c06dca3f7542c3b72d380
BLAKE2b-256 43b74b4ba294fb27efb1eb7b467f7529361750be2157ebc6e2fa49b948acb76e

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 91a88374c42e2b29ace25be8ac36cc225f158d4611a6ceb3a1a026becc0c94db
MD5 bcd5854d1eeaf12e0c77455a5f3d5072
BLAKE2b-256 4bad69d0998a8706f3568ae1da51c3980136add505806c5a699d47290e88561f

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54221ba82629a3a9af0dad1f1f203e84816e3a94688d2dfab326b2d44f5b849a
MD5 5e7333ee64dd2de90f851f7b2ea1c2aa
BLAKE2b-256 41aa189cc3478dc6e4212fe4390599f64e2cf5082d433a0ccd104e4b411fe40d

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe0a1a0057003830b46222dd9e7b95a054299ee0feddc878349fcf8a24a1189b
MD5 7d22f8150177c809fcce9d3c089b2c40
BLAKE2b-256 2476c123e94761188c8d3ef71b801b52dbed01edf2438954e08c43976174a727

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58a5a0b918e2da00ef27fc0150cfc53103dfc3fc3b69f411ec99935d46648b02
MD5 8bb6306f62ebd21696354b09aeb7c4f1
BLAKE2b-256 4c266cde0cb073d71ac1366de6e530593296bca306997d49b67b658b1f86eb98

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1d3f942d611664ee3095f62ff2f006ee7bb0865e8b120569c46ff063931ef56
MD5 6f6f15a971f0fa697e0aedb96720c6f0
BLAKE2b-256 4704c7dd9f948dae33872547e73b78a2586edf5436f0ac4262d1a9fe8bd618e1

See more details on using hashes here.

File details

Details for the file dcm2niix-1.0.20250506-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for dcm2niix-1.0.20250506-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3912ca361834f78641ff2c2b4ba835da6464f5c79e3cc6e144ca84590c475e60
MD5 478facc5461c48cd544ea1567ba6f01f
BLAKE2b-256 c6e71d1ed8c4ffd3e00db4390c56a6afdd994dca9d3bcc379304081b35e46f95

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page