Processing Library and Analysis Toolkit for Medical Imaging in Python
Project description
PlatiPy
Processing Library and Analysis Toolkit for Medical Imaging in Python
PlatiPy is a library of amazing tools for image processing and analysis - designed specifically for medical imaging!
Check out the PlatiPy documentation for more info.
This project was motivated by the need for a simple way to use, visualise, process, and analyse medical images. Many of the tools and algorithms are designed in the context of radiation therapy, although they are more widely applicable to other fields that use 2D, 3D, or 4D imaging.
PlatiPy is written in Python, and uses SimpleITK, VTK, and standard Python libraries. Jupyter notebooks are provided where possible, mainly for guidance on getting started with using the tools. We welcome feedback and contributions from the community (yes, you!) and you can find more information about contributing here.
What can I do with platipy?
A lot! A good place to start is by looking in the examples directory.
Some examples of what PlatiPy can do:
- DICOM organising and converting:
- Bulk convert from multiple series and studies with a single function
- Convert DICOM-RT structure and dose files to NIfTI images
- Create DICOM-RT structure files from binary masks e.g. from automatic contouring algorithms
- Image registration
- Register images and transform labels with a few lines of code
- Linear transformations: rigid, affine, similarity
- Non-linear deformable transformations: demons, b-splines
- Multiple metrics for optimisation
- Atlas-based segmentation
- A suite of tools that can be used out-of-the-box
- Includes advanced algorithms for iterative atlas selection and vessel splining
- Synthetic deformation field generation
- Simulate anatomically realistic shifts, expansions, and bending
- Compare DIR results from clinical systems
- Basic tools for image processing and analysis
- Computing label similarity metrics: DSC, mean distance to agreement, Hausdorff distance, and more
- Cropping images to a region of interest
- Rotate images and generate maximum/mean intensity projections (beams eye view modelling)
A major part of this package is visualisation, and some examples are shown below!
Visualise some contours
from platipy.imaging import ImageVisualiser
vis = ImageVisualiser(image)
vis.add_contour(contours)
fig = vis.show()
Register some images
from platipy.imaging.registration.linear import linear_registration
image_2_registered, tfm = linear_registration(
image_1,
image_2
)
vis = ImageVisualiser(image_1)
vis.add_comparison_overlay(image_2_registered)
fig = vis.show()
Calculate deformation vector fields
from platipy.imaging.registration.deformable import fast_symmetric_forces_demons_registration
image_2_deformed, tfm_dir, dvf = fast_symmetric_forces_demons_registration(
image_1,
image_2_registered
)
vis = ImageVisualiser(image_2_deformed, axis="z")
vis.add_vector_overlay(
dvf,
subsample=12,
arrow_scale=1,
arrow_width=2,
colormap=plt.cm.magma,
name="DVF magnitude [mm]",
color_function="magnitude"
)
fig = vis.show()
Getting started
There aren't many requirements, just an installed Python interpreter (3.7 or greater). PlatiPy can be installed with pip:
pip install platipy
The base installation of platipy does not include some large libraries needed for various components of platipy. The following extras are available to install to run specific platipy tools:
pip install platipy[cardiac]
pip install platipy[nnunet]
pip install platipy[backend]
Authors
- Phillip Chlap - phillip.chlap@unsw.edu.au
- Robert Finnegan - robert.finnegan@sydney.edu.au
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 platipy-0.7.1.tar.gz
.
File metadata
- Download URL: platipy-0.7.1.tar.gz
- Upload date:
- Size: 893.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.13 Linux/6.2.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8e0e588f97390a7860245ff1d9d8345aba8a3f4a33cef65f8759bf1ffa758d3f |
|
MD5 | d7046a323632e4e5f396452f6a414425 |
|
BLAKE2b-256 | 5c618c99702d66b61bf5d755a2218087c0cb1382a92ce16dc2cd81a757bdb5e8 |
File details
Details for the file platipy-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: platipy-0.7.1-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.10.13 Linux/6.2.0-1014-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 830a91a9656b3cba2ca9a018fd6452774e9a7991d073e40cd406996ec6523f5b |
|
MD5 | 14422e653e3fc55ee209ebcafe25697b |
|
BLAKE2b-256 | b1c46876fa1cb44a4036cbb76953dc757237e316ba6c0fdf031c91268a5dbcc7 |