Skip to main content

Tools for image registration between multiplexed and HnE stained tissue images

Project description

stainwarpy

Stainwarpy Logo

Docker PyPI version Bioconda version

stainwarpy is a command-line tool and a Python package for registering H&E stained and multiplexed tissue images. It provides a feature based registration pipeline, saving registered images, transformation maps and evaluation metrics.

Features

  • Register H&E images and multiplexed images (after extracting DAPI channel) using transformations.
  • Supports feature-based registration.
  • Outputs registered images, transformation maps and evaluation metrics (TRE and Mutual Information).
  • Transforms segmentation masks based on the computed transformations

Recommendations

  • For most cases, it is recommended to register H&E images onto multiplexed images (H&E as moving image).
  • The default similarity transformation usually works well and stable, therefore recommended.
  • ⚠️Note: This package is under active development. Frequent updates may introduce breaking changes. Use new versions with caution.

Installation

You can install stainwarpy using pip:

pip install stainwarpy

or

Bioconda (for Linux/macOS):

conda install -c bioconda stainwarpy

Usage as a command-line tool

Register Images

stainwarpy register <fixed_path> <moving_path> <output_folder> <final_img_sz> [options]

Examples:

stainwarpy register data/fixed_img.ome.tiff data/moving_img.ome.tiff ../output multiplexed multiplexed
stainwarpy register data/fixed_img.tif data/moving_img.tif ../output multiplexed multiplexed --multiplexed-px-sz 0.21 --hne-px-sz 0.52

Arguments:

  • multiplexed_path: Path to the multiplexed image (.tif/.tiff./.ome.tif/.ome.tiff)
  • hne_path: Path to the H&E image (.tif/.tiff./.ome.tif/.ome.tiff)
  • output_folder: Folder to save the registered images and metrics
  • fixed_img: Which one to be taken as fixed image multiplexed or hne
  • final_img_sz: Final moving image pixel size to be kept in the size of multiplexeed or hne image pixel size

Options:

  • --multiplexed-px-sz : Pixel size of the multiplexed image (no need to provide for ome.tiff, so default: None)
  • --hne-px-sz : Pixel size of the H&E image (no need to provide for ome.tiff, so default: None)
  • --feature-tform : Feature transformation method: similarity oraffine or projective (default: similarity)
  • --channel-idx : Channel index (DAPI) to extract if channel extraction not done beforehand for multiplexed image (default: 0), not used if already extracted.

Output

After running registration, the following files/folders will be generated and saved in the specified output folder:

  • registration_metrics_tform_map.json — TRE and Mutual Information and transformation map in an user friendly file format
  • 0_final_channel_image.ome.tif — Registered image (in the pixel size of moving image)
  • feature_based_transformation_map.npy — Transformation map

Extract a Channel (DAPI can be extracted for registration)

stainwarpy extract-channel <file_path> <output_folder_path> [--channel-idx N]

Arguments

  • file-path : Path to multichannel image (.tif/.tiff/.ome.tif/.ome.tiff)
  • output-folder-path : Folder to save the extracted channel image

Options

  • --channel-idx: Channel index to extract (default: 0 for DAPI)

Output

  • multiplexed_single_channel_img.ome.tif - Image with the extracted channel saved in the specified output folder

Transform segmentation Masks

Transform segmentation masks based on the transformation maps produced with the command register.

stainwarpy transform-seg-mask <mask_path> <fixed_path> <moving_path> <output_folder_path> <tform_map_path> <multiplexed/hne> <multiplexed/hne> [options]

Arguments

  • mask_path : Path to the segmentation mask of the moving image (.ome.tif/.ome.tiff/.tif/.tiff/.npy)
  • multiplexed_path : Path to the multiplexed image (.tif/.tiff/.ome.tif/.ome.tiff)
  • hne_path : Path to the H&E image (.tif/.tiff/.ome.tif/.ome.tiff)
  • output_folder_path : Folder to save the transformed segmentation mask
  • tform_map_path : Path to the transformation map
  • fixed_img : Which image taken as fixed image multiplexed or hne
  • final_mask_sz : Pixel size for final mask: multiplexed or hne

Options

  • --multiplexed-px-sz : Pixel size of the multiplexed image (no need to provide for ome.tiff, so default: None)
  • --hne-px-sz : Pixel size of the H&E image (no need to provide for ome.tiff, so default: None)

Output

  • transformed_segmentation_mask.ome.tif : The segmentation mask transformed to the fixed image coordinate space saved in the specified output folder

Usage as a Python Library

Although stainwarpy is mainly a command-line tool, its functions can also be used directly in Python for scripting.

Example: Running the Registration Pipeline

from stainwarpy.regPipeline import registration_pipeline

# run registration pipeline
tform_map, final_img, tre, mi = registration_pipeline(
    fixed_path="fixed_image.tif",
    moving_path="moving_image.tif",
    fixed_px_sz=0.5,
    moving_px_sz=0.5,
    fixed_img="multiplexed",
    final_img_sz="fixed",
    feature_tform="affine"        # to use a transformation other than default "similarity"
)

print("TRE:", tre)
print("Mutual Information:", mi)

License

This project is licensed under the MIT License.

This project includes portions of code in stainwarpy/preprocess.py adapted from HistomicsTK (https://github.com/DigitalSlideArchive/HistomicsTK/), which is licensed under Apache License 2.0. See LICENSE_HISTOMICSTK.txt for the full license text.

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

stainwarpy-0.2.4.tar.gz (19.3 kB view details)

Uploaded Source

Built Distribution

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

stainwarpy-0.2.4-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

Details for the file stainwarpy-0.2.4.tar.gz.

File metadata

  • Download URL: stainwarpy-0.2.4.tar.gz
  • Upload date:
  • Size: 19.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for stainwarpy-0.2.4.tar.gz
Algorithm Hash digest
SHA256 6384f6cbef6f67badfe96ab88c7fb168073f9e1df7f5e6a857d1d486b1ef0e73
MD5 8906b77df60f983557c84825424253e3
BLAKE2b-256 e8fe8b6c40a0a6e5128b722bfd0e37832e0f381fba517f0f193d6d3792875858

See more details on using hashes here.

File details

Details for the file stainwarpy-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: stainwarpy-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 20.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for stainwarpy-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1c591ea955b43a8f8565076f2d7388dace896f7ebdbb78416ff332827b744a4f
MD5 85ff99eff4d9ea96cf9ce894ae299e97
BLAKE2b-256 d0884a760d3772eed5c7424d780eff5533e04da2782f3aeed71d6238e413a4df

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