Skip to main content

Openslide/libtiff/GDAL ndarray-like interface and lazy parallel tile-based processing

Project description

BIPL is a Big Image Python Library

Library to read big pyramidal images like in formats like BigTiff, Aperio SVS, Leica MRXS.

bipl.Slide - ndarray-like reader for multiscale images (svs, tiff, etc...)

import numpy as np
from bipl import Slide

slide = Slide.open('test.svs')
shape: tuple[int, ...] = slide.shape  # Native shape
downsamples: tuple[int, ...] = slide.downsamples  # List of pre-existing sub-resolution levels

# Get native miniature
tmb: np.ndarray = slide.thumbnail()

mpp: float = slide.mpp  # X um per pixel, native resolution
image: np.ndarray = slide[:2048, :2048]  # Get numpy.ndarray of 2048x2048 from full resolution

MPP = 16.  # Let's say we want slide at 16 um/px resolution
downsample = MPP / slide.mpp
mini = slide.pool(downsample)  # Gives `downsample`-times smaller image
mini = slide.resample(MPP)  # Gives the same result

# Those ones trigger ndarray conversion
image: np.ndarray
image = mini[:512, :512]  # Take a part of
image = mini.numpy()  # Take a whole resolution level
image = np.array(mini, copy=False)  # Use __array__ API

bipl.Mosaic - apply function for each tile of big image on desired scale.

import numpy as np
from bipl import Mosaic, Slide

m = Mosaic(step=512, overlap=0)  # Read at [0:512], [512:1024], ...

# Open slide at 1:1 scale
s = Slide.open('test.svs')

# Target at 4 um/px resolution
# If `test.svs` has some pyramid in it (i.e. 1:1, 1:4, 1:16), it will be used to speed up reads.
s4 = s.resample(mpp=4.0)

# Get iterator over tiles.
# Reads will be at [0:512], [512:1024] ... @ MPP
tiles = m.iterate(s4)

# Read only subset of tiles according to binary mask (1s are read, 0s are not).
# `s4.shape * scale = mask.shape`, `scale <= 1`
tiles = tiles.select(mask, scale)

# Read all data, trigger I/O. All the previous calls do not trigger any disk reads beyond metadata.
images: list[np.ndarray] = [*tiles]

Installation

pip install bipl

BIPL is compatible with: Python 3.13+. Tested on Ubuntu & Windows.

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

bipl-0.6.15.tar.gz (44.8 kB view details)

Uploaded Source

Built Distribution

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

bipl-0.6.15-py3-none-win_amd64.whl (52.9 kB view details)

Uploaded Python 3Windows x86-64

File details

Details for the file bipl-0.6.15.tar.gz.

File metadata

  • Download URL: bipl-0.6.15.tar.gz
  • Upload date:
  • Size: 44.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bipl-0.6.15.tar.gz
Algorithm Hash digest
SHA256 dd4ae516a0b6af31ee632ee97038d7cd13b00fca676bcd72b4df081924f94f80
MD5 b62dfc5a425a394586cdd6f72daa656d
BLAKE2b-256 5a9ac48476b89e8eff142d273a7e45435a4610043519e6aef2e70bf8909052d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bipl-0.6.15.tar.gz:

Publisher: publish.yaml on arquolo/bipl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bipl-0.6.15-py3-none-win_amd64.whl.

File metadata

  • Download URL: bipl-0.6.15-py3-none-win_amd64.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for bipl-0.6.15-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 38c30f11a9d4a91abbb7e3877c41013deaa6300234234b17836fdd2aca73753f
MD5 6c93bfad5c25a88eff657ed3283c93dc
BLAKE2b-256 ff3b432a7d586074110adf08e2c076f297cb495bcaaa2a605c74b3fb51947e36

See more details on using hashes here.

Provenance

The following attestation bundles were made for bipl-0.6.15-py3-none-win_amd64.whl:

Publisher: publish.yaml on arquolo/bipl

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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