Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mckib2/ktblast
Python implementation of k-t BLAST MR reconstruction algorithm.
https://github.com/mckib2/ktblast
Last synced: 2 months ago
JSON representation
Python implementation of k-t BLAST MR reconstruction algorithm.
- Host: GitHub
- URL: https://github.com/mckib2/ktblast
- Owner: mckib2
- License: gpl-3.0
- Created: 2019-07-26T02:59:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-08-31T21:07:09.000Z (over 5 years ago)
- Last Synced: 2024-10-17T08:50:09.516Z (3 months ago)
- Language: Python
- Size: 301 KB
- Stars: 3
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
k-t BLAST
=========Python implementation of several k-t BLAST-like MR reconstruction
algorithms.Currently included modules are:
- UNFOLD
- k-t BLASTInstallation
============Should be a quick pip install:
.. code-block:: bash
pip install ktblast
Usage
=====See examples module and doc strings -- both good resources for full
arguments list and usage... code-block:: python
# UNFOLD algorithm
from ktblast import unfoldsx, sy, st = kspace[:]
recon = unfold(kspace, time_axis=-1)# k-t BLAST algorithm
from ktblast import ktblastsx, sy, st = kspace[:]
sx, sy, st = calib[:]
recon = ktblast(kspace, calib, psi, time_axis=-1)About
=====I couldn't find any implementation of these algorithms that were
easy to get up and running in Python, so I decided to write my own.