MIRP

MIRP is a python package for quantitative analysis of medical images. It focuses on processing images for integration with radiomics workflows. These workflows either use quantitative features computed using MIRP, or directly use MIRP to process images as input for deep learning models.

227
mentions
3
contributors
Get started
1426 commitsLast commit ≈ 3 weeks ago71 stars14 forks

Cite this software

Description

GitHub License PyPI - Python Version PyPI - Version GitHub Actions Workflow Status JOSS

Medical Image Radiomics Processor

MIRP is a python package for quantitative analysis of medical images. It focuses on processing images for integration with radiomics workflows. These workflows either use quantitative features computed using MIRP, or directly use MIRP to process images as input for neural networks and other deep learning models.

MIRP offers the following main functionality:

Tutorials

We currently offer the following tutorials:

Documentation

Documentation can be found here: https://oncoray.github.io/mirp/

Supported Python and OS

MIRP currently supports the following Python versions and operating systems:

PythonLinuxWinOSX
3.10SupportedSupportedSupported
3.11SupportedSupportedSupported
3.12SupportedSupportedSupported
3.13SupportedSupportedSupported

Supported imaging and mask types

MIRP currently supports the following image and mask types:

Data formatData typeSupported modality
DICOMimageCT, MR (incl. ADC, DCE), PT, RTDOSE, CR, DX, MG
DICOMmaskRTSTRUCT, SEG
NIfTIanyany
NRRDanyany
numpyanyany
MIRP-nativeanyany

NIfTI, NRRD, and numpy files support any kind of (single-channel) image. MIRP cannot process RGB or 4D images. MIRP-native images and masks can be produced by functions such as extract_images, and then used as input.

Installing MIRP

MIRP is available from PyPI and can be installed using pip, or other installer tools:

pip install mirp

Examples - Computing radiomics features

MIRP can be used to compute quantitative features from regions of interest in images in an IBSI-compliant manner using a standardized workflow This requires both images and masks. MIRP can process DICOM, NIfTI, NRRD and numpy images. Masks are DICOM radiotherapy structure sets (RTSTRUCT), DICOM segmentation (SEG) or volumetric data with integer labels (e.g. 1, 2, etc.).

Below is a minimal working example for extracting features from a single image file and its mask.

from mirp import extract_features

feature_data = extract_features(
    image="path to image",
    mask="path to mask",
    base_discretisation_method="fixed_bin_number",
    base_discretisation_n_bins=32
)

Instead of providing the path to the image ("path_to_image"), a numpy image can be provided, and the same goes for "path to mask". The disadvantage of doing so is that voxel spacing cannot be determined.

MIRP also supports processing images and masks for multiple samples (e.g., patients). The syntax is much the same, but depending on the file type and directory structure, additional arguments need to be specified. For example, assume that files are organised in subfolders for each sample, i.e. main_folder / sample_name / subfolder. The minimal working example is then:

from mirp import extract_features

feature_data = extract_features(
    image="path to main image directory",
    mask="path to main mask directory",
    image_sub_folder="image subdirectory structure relative to main image directory",
    mask_sub_folder="mask subdirectory structure relative to main mask directory",
    base_discretisation_method="fixed_bin_number",
    base_discretisation_n_bins=32
)

The above example will compute features sequentially. MIRP supports parallel processing using the ray package. Feature computation can be parallelized by specifying the num_cpus argument, e.g. num_cpus=2 for two CPU threads.

Examples - Image preprocessing for deep learning

Deep learning-based radiomics is an alternative to using predefined quantitative features. MIRP supports preprocessing of images and masks using the same standardized workflow that is used for computing features.

Below is a minimal working example for preprocessing deep learning images. Note that MIRP uses the numpy notation for indexing, i.e. indices are ordered [z, y, x].

from mirp import deep_learning_preprocessing

processed_images = deep_learning_preprocessing(
    image="path to image",
    mask="path to mask",
    crop_size=[50, 224, 224]
)

Examples - Summarising image metadata

MIRP can also summarise image metadata. This is particularly relevant for DICOM files that have considerable metadata. Other files, e.g. NIfTI, only have metadata related to position and spacing of the image.

Below is a minimal working example for extracting metadata from a single image file.

from mirp import extract_image_parameters

image_parameters = extract_image_parameters(
    image="path to image"
)

MIRP also supports extracting metadata from multiple files. For example, assume that files are organised in subfolders for each sample, i.e. main_folder / sample_name / subfolder. The minimal working example is then:

from mirp import extract_image_parameters

image_parameters = extract_image_parameters(
    image="path to main image directory",
    image_sub_folder="image subdirectory structure relative to main image directory"
)

Examples - Finding labels

MIRP can identify which labels are present in masks. For a single mask file, labels can be retrieved as follows:

from mirp import extract_mask_labels

mask_labels = extract_mask_labels(
    mask="path to mask"
)

MIRP supports extracting labels from multiple masks. For example, assume that files are organised in subfolders for each sample, i.e. main_folder / sample_name / subfolder. The minimal working example is then:

from mirp import extract_mask_labels
mask_labels = extract_mask_labels(
    mask="path to main mask directory",
    mask_sub_folder="mask subdirectory structure relative to main mask directory"
)

Examples - Using MIRP native images and mask

MIRP supports exporting images and masks in its native, internal format. This is specified using the image_export_format="native" argument, e.g. in extract_images(.., image_export_format="native") or extract_features_and_images(..., image_export_format="native"). The resulting images and masks can be used again as input, e.g. extract_features(image=native_images, masks=native_masks, ...), with native_images and native_masks being the images and masks in the native format, respectively.

This allows for external processing of the contents of images and masks, such as performing gamma corrections. The image and mask contents are retrieved using the get_voxel_grid method, and set using the set_voxel_grid method. set_voxel_grid expects a numpy.ndarray of the same shape and type (float for images, bool for masks) as the original.

from mirp import extract_images, extract_features

results = extract_images(
    image="path to image",
    mask="path to mask",
    image_export_format="native"
)

image = results[0][0][0]
mask = results[0][1][0]

# Obtain the numpy.ndarray.
voxel_grid = image.get_voxel_grid()

# Divide intensities by 2.
image.set_voxel_grid(voxel_grid=voxel_grid / 2.0)

features = extract_features(
    image=image,
    mask=mask,
    base_discretisation_method="fixed_bin_number",
    base_discretisation_n_bins=32
)[0]

Citation info

MIRP has been published in Journal of Open Source Software: Zwanenburg A, Löck S. MIRP: A Python package for standardised radiomics. J Open Source Softw. 2024;9: 6413. doi:10.21105/joss.06413

Contributing

If you have ideas for improving MIRP, please read the short contribution guide.

Developers and contributors

MIRP is developed by:

  • Alex Zwanenburg

We would like thank the following contributors:

  • Stefan Leger
  • Sebastian Starke
Logo of MIRP
Keywords
Programming languages
  • Python 66%
  • Jupyter Notebook 34%
License
</>Source code
Packages
pypi.org

Participating organisations

Nat
Onc
German Cancer Research Center
TU Dresden
Helmholtz-Zentrum Dresden-Rossendorf

Reference papers

Mentions

Contributors

AZ
Alex Zwanenburg
Developer
National Center for Tumor Diseases (NCT), partner site Dresden
SL
Steffen Löck
Supervisor
OncoRay – National Center for Radiation Research in Oncology
SS
Sebastian Starke
Contributor
Helmholtz-Zentrum Dresden-Rossendorf