Skip to main content

A lazy image reading library for various file formats

Project description

Lazyimread

CI PyPI - Version License: CC0-1.0 Python Versions

ND image data loaders generally works great, but you often need to install them for specific data types and projects. Then, you have to make sure the data is in the desired dimentional order (for each type of data). I don't know about you, but I wasted a lot of 10 minutes on this type of tasks.

Lazyimread is a Python library that simplifies working with large, multi-dimensional image datasets. Using a single function call (e.g., load & imread), it can handle importing of various image file formats such as TIFF, HDF5, Zarr, image sequences, and video files without writing boilerplate code for each format. It handles 2-5D TZXYC data with a consistent API and some automation for automatic dimension order detection and rearrangement. It also includes several simple, boilerplate saving interfaces.

Whether you're dealing with microscopy data, satellite imagery, or video analysis, Lazyimread can significantly streamline your workflow and make handling complex image datasets more intuitive and efficient.

Features:

  • Using imread-like syntax to load all supported file formats
  • Automatically detects file type and dimension order
  • Configurable partial loading of datasets
  • Asynchronous loading interface for queued tasks

Warning:

Lazyimread is designed to handle common image and video formats and setups. It may not be suitable for specialized data formats and arrangements. This early development can be buggy, and the syntax of XYZCT can vary in different fields. Use at your own risk.

Installation:

You can install LazyImRead using pip (pending release):

pip install lazyimread

or from GitHub:

pip install git+https://github.com/lyehe/lazyimread.git

For development installation, clone the repository and install in editable mode:

git clone https://github.com/lyehe/lazyimread.git
cd lazyimread
pip install -e .

Or feel free to copy and paste the code into your project / data analysis pipeline.

Usage Examples:

You can find more examples in the examples.ipynb

Try it here: Open In Colab

1. Basic loading:

from lazyimread import load, imread
from lazyimread import lazyload as ll

# All the same
data, dim_order, metadata = load('path/to/your/file.tiff')
data = imread('path/to/your/file.zarr') # Ignore dimension order and metadata
data, dim_order, metadata = ll('path/to/your/folder') # Folder with image files

2. Configuring load options:

Only required portions of the data are loaded to the memory.

from lazyimread import imset, imread

# The loader will only load the frames between t=0-10 and z=5-15 and skip the rest
options = imset(t_range=(0, 10), z_range=(5, 15), target_order='TZYXC')
data, dim_order, metadata = imread('path/to/your/file.h5', options)

3. Rearranging dimensions:

You can rearrange the dimensions of the data to match your needs while loading.

from lazyimread import load, rearrange_dimensions

# The default dimension order is TZYXC, but we can rearrange it to TCZXY
data, dim_order, metadata = load('path/to/your/file.zarr')
rearranged_data, new_order = rearrange_dimensions(data, dim_order, 'TCZYX')

4. Saving data:

This saves the data back to a file with minimal configuration.

from lazyimread import save_tiff

# Save the data back to a TIFF file
save_tiff(data, 'output.tiff', dim_order='TZXYC')

5. Asynchronous loading:

This is useful for loading large datasets asynchronously while performing other tasks.

from lazyimread import aload

data, dim_order, metadata = aload('path/to/your/file.tiff')

6. GUI loading:

This comes handy when you want to load data interactively.

from lazyimread import gload, gdirload

data, dim_order, metadata = gload() # GUI file selector (for single files)
data, dim_order, metadata = gdirload() # GUI directory selector (for folder and zarr store)

License:

This project is licensed under the CC0 1.0 Universal (CC0 1.0) Public Domain Dedication.

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

lazyimread-0.1.8.tar.gz (23.8 kB view details)

Uploaded Source

Built Distribution

lazyimread-0.1.8-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

Details for the file lazyimread-0.1.8.tar.gz.

File metadata

  • Download URL: lazyimread-0.1.8.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for lazyimread-0.1.8.tar.gz
Algorithm Hash digest
SHA256 9381eb967eda1ed1649e39cf0023fdd4b7f66ceca721cd973b8c490e28a74a0a
MD5 a981c5cbbad640686d209292a3aaa5a9
BLAKE2b-256 5196bfbeac3d0948993e1aacd4c15c26f3726004b5ef5c3ce99b241a7ab2d44e

See more details on using hashes here.

File details

Details for the file lazyimread-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: lazyimread-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 21.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.7

File hashes

Hashes for lazyimread-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 01bbf70a71aca8ce5e568e832342ed7910e355f4371c2ff00a5c108a46456f24
MD5 f2e4b7151a42521697646a31532b45a0
BLAKE2b-256 5c7b44ccfc56e2afc22078ef189b28ff938c8c9c180ce930b03eef8e1a72c0c8

See more details on using hashes here.

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