MR image reconstruction and processing package specifically developed for PyTorch.
Project description
MRpro
MR image reconstruction and processing package specifically developed for PyTorch.
- Source code: https://github.com/PTB-MR/mrpro
- Documentation: https://ptb-mr.github.io/mrpro/
- Bug reports: https://github.com/PTB-MR/mrpro/issues
- Try it out:
Awards
- 2024 ISMRM QMRI Study Group Challenge, 2nd prize for Relaxometry (T2* and T1)
Main features
- ISMRMRD support MRpro supports ismrmrd-format for MR raw data.
- PyTorch All data containers utilize PyTorch tensors to ensure easy integration in PyTorch-based network schemes.
- Cartesian and non-Cartesian trajectories MRpro can reconstruct data obtained with Cartesian and non-Cartesian (e.g. radial, spiral...) sapling schemes. MRpro automatically detects if FFT or nuFFT is required to reconstruct the k-space data.
- Pulseq support If the data acquisition was carried out using a pulseq-based sequence, the seq-file can be provided to MRpro and the used trajectory is automatically calculated.
- Signal models A range of different MR signal models are implemented (e.g. T1 recovery, WASABI).
- Regularized image reconstruction Regularized image reconstruction algorithms including Wavelet-based compressed sensing or total variation regularized image reconstruction are available.
Examples
In the following, we show some code snippets to highlight the use of MRpro. Each code snippet only shows the main steps. A complete working notebook can be found in the provided link.
Simple reconstruction
Read the data and trajectory and reconstruct an image by applying a density compensation function and then the adjoint of the Fourier operator and the adjoint of the coil sensitivity operator.
# Read the trajectory from the ISMRMRD file
trajectory = mrpro.data.traj_calculators.KTrajectoryIsmrmrd()
# Load in the Data from the ISMRMRD file
kdata = mrpro.data.KData.from_file(data_file.name, trajectory)
# Perform the reconstruction
reconstruction = mrpro.algorithms.reconstruction.DirectReconstruction.from_kdata(kdata)
img = reconstruction(kdata)
Full example: https://github.com/PTB-MR/mrpro/blob/main/examples/direct_reconstruction.py
Estimate quantitative parameters
Quantitative parameter maps can be obtained by creating a functional to be minimized and calling a non-linear solver such as ADAM.
# Define signal model
model = MagnitudeOp() @ InversionRecovery(ti=idata_multi_ti.header.ti)
# Define loss function and combine with signal model
mse = MSEDataDiscrepancy(idata_multi_ti.data.abs())
functional = mse @ model
[...]
# Run optimization
params_result = adam(functional, [m0_start, t1_start], max_iter=max_iter, lr=lr)
Full example: https://github.com/PTB-MR/mrpro/blob/main/examples/qmri_sg_challenge_2024_t1.py
Pulseq support
The trajectory can be calculated directly from a provided pulseq-file.
# Read raw data and calculate trajectory using KTrajectoryPulseq
kdata = KData.from_file(data_file.name, KTrajectoryPulseq(seq_path=seq_file.name))
Full example: https://github.com/PTB-MR/mrpro/blob/main/examples/pulseq_2d_radial_golden_angle.py
Contributing
Installation for developers
- Clone the MRpro repository
- Create/select a python environment
- Install "MRpro" in editable mode including test dependencies:
pip install -e ".[test]"
- Setup pre-commit hook:
pre-commit install
Recommended IDE and Extensions
We recommend to use Microsoft Visual Studio Code. A list of recommended extensions for VSCode is given in the .vscode/extensions.json
Style
Please look at our contributor guide for more information on the repository structure, naming conventions, and other useful information.
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 mrpro-0.241015.tar.gz
.
File metadata
- Download URL: mrpro-0.241015.tar.gz
- Upload date:
- Size: 112.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39ba1618c6b5d1baa78d5a65d7033ed9102a6fcf6aad5d421eccff15a93cc05d |
|
MD5 | cbe7194e5c2d1451b3902e0ae233ee49 |
|
BLAKE2b-256 | f24663078f210f290062635f44cbb92ebdeae211510a231b95d28139ee97288d |
File details
Details for the file mrpro-0.241015-py3-none-any.whl
.
File metadata
- Download URL: mrpro-0.241015-py3-none-any.whl
- Upload date:
- Size: 149.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0114eb088aa6df99dc2155b2be88251a0d3ed041e1b5fd411aea838c2c9a07f1 |
|
MD5 | 04f243232b1a969aef7ccbed844dad5b |
|
BLAKE2b-256 | f6c9ac42b0de0b150bcf6182f5573968c521bc655701df4d5d71d1447e954527 |