Skip to main content

Pytorch toolbox for Hyperelastic Susceptibility Artifact Correction

Project description

PyHySCO

This is a package for Echo-Planar MRI susceptibility artifact correction implemented in PyTorch.

Installation

From PyPI:

pip install PyHySCO

Python package dependencies (automatically installed by pip) are listed in requirements.txt. It is suggested to run the python file tests/test_all.py to ensure all tests are passing and the code is setup properly.

Usage

Command Line Correction

The program can be run directly from a terminal or command line by using the python command to run the file pyhysco.py or if installed using pip the command pyhysco. Supplying the following required parameters:

  • file_1: file path of first image (stored as nii.gz) with phase encoding direction opposite of file_2
  • file_2: file path of second image (stored as nii.gz) with phase encoding direction opposite of file_1
  • ped: phase-encoding dimension (1, 2, or 3)

Use the help flag (--help) to see optional parameters available.

Minimal Usage:

pyhysco --file_1 <image1> --file_2 <image2> --ped <phase encoding direction>

Example:

pyhysco --file_1 image1.nii.gz --file_2 image2.nii.gz --ped 1 --output_dir results/ --max_iter 25

Write a Correction Script

A user-written script can be used to call the methods of the program.

Example:

from EPI_MRI.EPIMRIDistortionCorrection import *
from optimization.GaussNewton import *
import torch

device = 'cuda:0' if torch.cuda.is_available() else 'cpu'

# load the image and domain information
# change this function call to be the filepath for your data
data = DataObject('../data/156334_v.nii.gz', '../data/156334_-v.nii.gz', 1, device=device,dtype=torch.float32)

loss_func = EPIMRIDistortionCorrection(data, 300, 1e-4, regularizer=myLaplacian3D, PC = JacobiCG)
# initialize the field map
B0 = loss_func.initialize(blur_result=True)
# set-up the optimizer
# change path to be where you want logfile and corrected images to be stored
opt = GaussNewton(loss_func, max_iter=500, verbose=True, path='results/gnpcg-Jac/')
# optimize!
opt.run_correction(B0)
# save field map and corrected images
opt.apply_correction()
# see plot of corrected images
opt.visualize()

Examples and Further Documentation

There are a set of examples in the examples directory. Full API documentation is in the docs directory. See also Instructions.md for an overview of the correction process.

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

PyHySCO-0.0.4.tar.gz (65.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

PyHySCO-0.0.4-py3-none-any.whl (62.9 kB view details)

Uploaded Python 3

File details

Details for the file PyHySCO-0.0.4.tar.gz.

File metadata

  • Download URL: PyHySCO-0.0.4.tar.gz
  • Upload date:
  • Size: 65.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.3

File hashes

Hashes for PyHySCO-0.0.4.tar.gz
Algorithm Hash digest
SHA256 5408ecc22e920d01dfa5f8d3e653426cadb55d7b8dc73e851357523c26f37b03
MD5 fe145ba7e014367f6a0d0b72fcb75f79
BLAKE2b-256 0066dbea2440b91e383c7e84c51dda0486cdde968a76a14288be8299434c66d2

See more details on using hashes here.

File details

Details for the file PyHySCO-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: PyHySCO-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 62.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.8.3

File hashes

Hashes for PyHySCO-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 589e6509602b98b5f275d6e772c8ead8c8641ed1f4f20e2e24efaefb022bd884
MD5 e95b063bde611f2a971599f7f2d00f88
BLAKE2b-256 31a9a938582f15427c8e2667c4e2d30137146d6651a4db738ffb8ec05b918b12

See more details on using hashes here.

Supported by

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