Skip to main content

An automatic MRI QA tool

Project description


Ibn Al-Haytham

hazen

Quality assurance framework for Magnetic Resonance Imaging
Explore the docs »

View repo · Report Bug · Request Feature

Please STAR this repo to receive updates about new versions of hazen!


Overview

hazen is a command line tool (Python package) for performing automated analysis of magnetic resonance imaging (MRI) quality assurance (QA) data. hazen consists of multiple Tasks which perform quantitative processing and analysis of MRI phantom data. Currently, hazen supports the ACR Large MRI Phantom and the MagNET Test Objects collection of phantoms.

The hazen Tasks provide the following measurements within these phantoms:

  • Signal-to-noise ratio (SNR)
  • Spatial resolution
  • Slice position
  • Slice width
  • Uniformity
  • Ghosting
  • MR relaxometry
  • Low Contrast Object Detectability

Each Task outputs numerical results to the user's terminal. Below is an output from the hazen snr Task performed on some example MRI data:

hazen snr tests/data/snr/Siemens
{
  'snr_smoothing_measured_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 173.97,
  'snr_smoothing_measured_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_3_1': 177.91,
  'snr_smoothing_normalised_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 1698.21,
  'snr_smoothing_normalised_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_3_1': 1736.66,
  'snr_subtraction_measured_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 220.73,
  'snr_subtraction_normalised_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 2154.69
}

The optional --report flag allows the user to generate diagrams that visualise the image processing performed by each hazen Task:

hazen snr tests/data/snr/Siemens --report hazen acr_ghosting tests/data/acr/Siemens --report

Installation and usage

There are two main options for running hazen.

  1. Install using Python and run directly via command line interface (CLI)
  2. Run using the latest Docker container build

1) Python install and run (CLI)

hazen can be installed with Python 3.11+ (currently supporting 3.11, 3.12, and 3.13). We recommend using uv for installation.

Installing with uv (recommended)

First, install uv if you haven't already:

# On macOS and Linux
curl -LsSf https://astral.sh/uv/install.sh | sh

# On Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Then install hazen:

uv tool install hazen
# Check that hazen was correctly installed and see which version it is:
hazen --version

Installing with pip

Alternatively, you can install hazen using pip in a virtual environment:

curl -LsSf https://astral.sh/uv/install.sh | sh

For Windows systems, uv can be installed with:

powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"

Installing hazen

To always use the most up-to-date release of hazen use:

uvx hazen

That is, replace any and all hazen commands from hazen ... to uvx hazen ... like so:

uvx hazen --help
uvx hazen --version
uvx hazen snr tests/data/snr/Philips

This will automatically check if there has been an update to hazen and download the latest version. If hazen has been updated really recently (i.e. within the last couple of minutes), you can force the use of the absolute latest version with:

uvx --reinstall hazen

If you'd like to use uv like a more traditional package manager and avoid the automatic updating, you can manually install hazen with:

uv tool install hazen

Running hazen via CLI

The CLI version of hazen is designed to be pointed at single folders containing DICOM file(s). Example datasets are provided in the tests/data/ directory. If you are using the Docker version of hazen (installation described below), replace hazen with hazen-app in the following commands.

# To see the full list of available Tasks and optional arguments, enter:
hazen -h

# To perform the SNR Task on example data:
hazen snr tests/data/snr/Philips

# The `--report` option generates additional visualisation about the image processing measurement methods and is available 
# for all Tasks. Example usage for the SNR Task, which returns images showing the regions used for SNR calculation.
hazen snr tests/data/snr/Philips --report

# a directory path can be provided to save the report images to:
hazen snr tests/data/snr/Philips --report ./report_images

2) Docker

The Docker version of hazen has been made available as it is easy to get up-and-running and is linked to the most recent stable release. Refer to the Docker installation instructions to install Docker on your host computer.

The containerised version of hazen can be obtained from DockerHub (see commands below). For ease of use, it is recommended to copy the hazen-app script to a location accessible on the PATH such as /usr/local/bin. This will allow you to run hazen from any directory on your computer. Then, to use Docker hazen, simply run the hazen-app script appended with the function you want to use (e.g.: snr).

In Terminal:

# Ensure Docker installed and running, then pull the latest hazen Docker container
docker pull gsttmriphysics/hazen:latest

# Command line output will look something like:
latest: Pulling from gsttmriphysics/hazen
Digest: sha256:18603e40b45f3af4bf45f07559a08a7833af92a6efe21cb7306f758e8eeab24a
Status: Image is up to date for gsttmriphysics/hazen:latest
docker.io/gsttmriphysics/hazen:latest

# Copy the 'hazen-app' executable file into your local bin folder
cd hazen
cp hazen-app /usr/local/bin

# Run hazen via Docker with the normal CLI inputs
hazen-app snr tests/data/snr/Siemens/

# Example command line output for the SNR Task:
{
  'snr_smoothing_measured_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 173.97,
  'snr_smoothing_measured_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_3_1': 177.91,
  'snr_smoothing_normalised_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 1698.21,
  'snr_smoothing_normalised_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_3_1': 1736.66,
  'snr_subtraction_measured_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 220.73,
  'snr_subtraction_normalised_SNR_seFoV250_2meas_slice5mm_tra_repeat_PSN_noDC_2_1': 2154.69
}

Web Interface

Development of a web interface for hazen is in progress.


Contributing to hazen

Users

Please raise an Issue for any of the following reasons:

  • Problems installing or running hazen
  • Suggestions for improvements
  • Requests for new features

We have used hazen with MRI data from a handful of different MRI scanners, including multiple different vendors. If hazen does not perform with your MRI data, or the results are unexpected, please raise an Issue.

Developers

Please see CONTRIBUTING.md for developer guidelines.


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

hazen_wales-2.0.0a2.tar.gz (86.7 kB view details)

Uploaded Source

Built Distribution

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

hazen_wales-2.0.0a2-py3-none-any.whl (99.1 kB view details)

Uploaded Python 3

File details

Details for the file hazen_wales-2.0.0a2.tar.gz.

File metadata

  • Download URL: hazen_wales-2.0.0a2.tar.gz
  • Upload date:
  • Size: 86.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hazen_wales-2.0.0a2.tar.gz
Algorithm Hash digest
SHA256 b2ddd54841ee213a81251f9e1fb2692e8f47a3ea0f88c1ea818ca52233bdb2a1
MD5 38db3d0f2a9a8b8d16beb41748511f4e
BLAKE2b-256 9546e993462726e36a4bd4f98fd1353a71c92574d59bdb17a139d04cb556c141

See more details on using hashes here.

File details

Details for the file hazen_wales-2.0.0a2-py3-none-any.whl.

File metadata

  • Download URL: hazen_wales-2.0.0a2-py3-none-any.whl
  • Upload date:
  • Size: 99.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for hazen_wales-2.0.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 226642beaa20564584550dd85dbf2ddfb74b24386c8bcaceb151a6768a6b2438
MD5 6d25955cdeff97cbfe39635039f0522b
BLAKE2b-256 38a01cb7fc53ed9f6a9fbd4e87e1f1be2ab2cfe3eaac0b6f19151def67e8a6a0

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