AICSImageIO is a pure-Python library for reading, writing, and converting microscopy image data and metadata. Version 4.14.0 supports Python >=3.9 and provides a unified interface for numerous file formats (e.g., CZI, OME-TIFF, LIF, ND2). It is developed by the Allen Institute for Cell Science and released under a BSD license.
pip install aicsimageioNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Opens a microscopy image file, shows dimensions, reads data as a dask array, and prints metadata.
Use `from aicsimageio import AICSImage`.
Use `img.get_image_dask_data().compute()` to get a numpy array.
Print `img.dims.shape` and `img.dims.order` to understand the ordering before slicing.
Install with the appropriate extra: `pip install aicsimageio[czi]` or `pip install aicsimageio[all]`.
Change import to `from aicsimageio import AICSImage`.
Install the appropriate extra, e.g., `pip install aicsimageio[czi]` for .czi files.
Use `img.get_image_dask_data()[0, :, :].compute()` or use `img.get_image_data(...)` with specific dimensions.