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,
    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.1.tar.gz (19.1 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.1-py3-none-any.whl (20.3 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: stainwarpy-0.2.1.tar.gz
  • Upload date:
  • Size: 19.1 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.1.tar.gz
Algorithm Hash digest
SHA256 bcae42a72a3e7d4c124cdf54dbd676b49c37fea43182eb392a0753f615650141
MD5 cb80fe9bdd7cc9ac8a83526244a2efb4
BLAKE2b-256 44c291cf86093a4d47cd0b619fa0b07fcb7691e31bac159e8fb241ab9b88b53c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: stainwarpy-0.2.1-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.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dcd74020c3cccc3e98071fd298b786a7c716f098fed7b837a469122601418df9
MD5 f4a94e6f17a906c344ee10a41f466777
BLAKE2b-256 d2ec931b3b017bc9ca1a9755d5f4d1d1d162cf3856ca84376bd8137ed59d37eb

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