CUDA-accelerated Python utilities for high-throughput neuroimage processing and analysis
Project description
NIMPA is a stand-alone Python sub-package of NiftyPET, dedicated to high-throughput processing and analysis of brain images, particularly those, which are acquired using positron emission tomography (PET) and magnetic resonance (MR). Although, it is an essential part of the NiftyPET package for seamless PET image reconstruction, NIMPA is equally well suited for independent image processing, including image trimming, upsampling and partial volume correction (PVC).
Trimming is performed in order to reduce the unused image voxels in brain imaging, when using whole body PET scanners, for which only some part of the field of view (FOV) is used.
The upsampling is needed for more accurate extraction (sampling) of PET data using regions of interest (ROI), obtained using parcellation of the corresponding T1w MR image, usually of higher image resolution.
PVC is needed to correct for the spill-in and spill-out of PET signal from defined ROIs (specific for any given application).
Documentation with installation manual and tutorials: https://niftypet.readthedocs.io/
Quick Install
Note that it’s recommended (but not required) to use conda.
# cross-platform install
conda install -c conda-forge python=3 \
ipykernel numpy scipy scikit-image matplotlib ipywidgets dipy nibabel pydicom
pip install "nimpa>=2"
For optional dcm2niix (image conversion from DICOM to NIfTI) and/or niftyreg (image registration) support, simply install them separately (pip install dcm2niix niftyreg).
External CMake Projects
The raw C/CUDA libraries may be included in external projects using cmake. Simply build the project and use find_package(NiftyPETnimpa).
# print installation directory (after `pip install nimpa`)...
python -c "from niftypet.nimpa import cmake_prefix; print(cmake_prefix)"
# ... or build & install directly with cmake
mkdir build && cd build
cmake ../niftypet && cmake --build . && cmake --install . --prefix /my/install/dir
At this point any external project may include NIMPA as follows (Once setting -DCMAKE_PREFIX_DIR=<installation prefix from above>):
cmake_minimum_required(VERSION 3.3 FATAL_ERROR)
project(myproj)
find_package(NiftyPETnimpa COMPONENTS improc REQUIRED)
add_executable(myexe ...)
target_link_libraries(myexe PRIVATE NiftyPET::improc)
Licence
Copyright 2018-21
Pawel J. Markiewicz @ University College London
Casper O. da Costa-Luis @ University College London/King’s College London
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
File details
Details for the file nimpa-2.6.3.tar.gz
.
File metadata
- Download URL: nimpa-2.6.3.tar.gz
- Upload date:
- Size: 1.7 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fd06f1bb246131ff8a3a872902bd007a737e8ac1b62c74b800443173769ec41 |
|
MD5 | 018d65b31da3ecce3f5005773a7b896f |
|
BLAKE2b-256 | a49d2ecdc3645e029ce759f69163a4b2d97ea1a7836a81690228da648386b2aa |