Skip to main content

Python bindings for libisyntax

Project description

pyisyntax

A Python library for working with pathology images in the iSyntax file format, powered by libisyntax.

Installation

$ pip install pyisyntax

Usage

Read and display a region of the WSI via Pillow.

from isyntax import ISyntax
import PIL.Image

with ISyntax.open("my_file.isyntax") as isyntax:
    # Read pixels from the specified region into a numpy array
    pixels = isyntax.read_region(500, 500, 400, 200, level=4)
    # Convert numpy array into a PIL image
    pil_image = PIL.Image.fromarray(pixels)
    # Show the image
    pil_image.show()

Extract and save the associated macro image.

from isyntax import ISyntax

with ISyntax.open("my_file.isyntax") as isyntax:
    # The macro image will be returned as compressed JPEG data.
    jpeg_data = isyntax.read_macro_image_jpeg()
    # This JPEG data can be written directly to a file.
    with open("macro_image.jpg", "wb") as f:
        f.write(jpeg_data)
    # Alternatively, you could decompress the data using Pillow:
    # pil_image = PIL.Image.open(io.BytesIO(jpeg_data), formats=["JPEG"])

Development

Dependency management

To set up a development environment from the lock file:

  1. Ensure that you have micromamba installed.
  2. Create the environment:
    $ micromamba create -n pyisyntax -f conda-lock.yml --category main --category dev
    
  3. Activate the environment:
    $ micromamba activate pyisyntax
    

To modify pyisyntax project dependencies:

  1. Edit pyproject.toml.
  2. Update the lock file using conda-lock:
    $ conda-lock lock -f pyproject.toml -p linux-64 --micromamba
    

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

pyisyntax-0.1.3.tar.gz (247.6 kB view hashes)

Uploaded Source

Built Distributions

pyisyntax-0.1.3-cp310-abi3-win_amd64.whl (87.2 kB view hashes)

Uploaded CPython 3.10+ Windows x86-64

pyisyntax-0.1.3-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (572.1 kB view hashes)

Uploaded CPython 3.10+ manylinux: glibc 2.17+ x86-64

pyisyntax-0.1.3-cp310-abi3-macosx_11_0_arm64.whl (135.3 kB view hashes)

Uploaded CPython 3.10+ macOS 11.0+ ARM64

pyisyntax-0.1.3-cp310-abi3-macosx_10_9_x86_64.whl (149.2 kB view hashes)

Uploaded CPython 3.10+ macOS 10.9+ x86-64

Supported by

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