OME-Arrow uses Open Microscopy Environment (OME) specifications through Apache Arrow for fast, queryable, and language agnostic bioimage data.
Images are often left behind from the data model, referenced but excluded from databases.
OME-Arrow brings images back into the story.
OME Arrow enables image data to be stored alongside metadata or derived data such as single-cell morphology features. Images in OME Arrow are composed of mutlilayer structs so they may be stored as values within tables. This means you can store, query, and build relationships on data from the same location using any system which is compatible with Apache Arrow (including Parquet) through common data interfaces (such as SQL and DuckDB).
This package is intentionally dedicated to work at a per-image level and not large batch handling (though it may be used for those purposes by users or in other projects).
- For visualizing OME Arrow and OME Parquet data in Napari, please see the
napari-ome-arrowNapari plugin. - For more comprehensive handling of many images and features in the context of the OME Parquet format please see the
CytoDataFrameproject (and relevant example notebook).
Install OME Arrow from PyPI or from source:
# install from pypi
pip install ome-arrow
# install directly from source
pip install git+https://github.com/wayscience/ome-arrow.gitSee below for a quick start guide. Please also reference an example notebook: Learning to fly with OME-Arrow.
from ome_arrow import OMEArrow
# Ingest a tif image through a convenient OME Arrow class
# We can also ingest OME-Zarr or NumPy arrays.
oa_image = OMEArrow(
data="your_image.tif"
)
# Access the OME Arrow struct itself
# (compatible with Arrow-compliant data storage).
oa_image.data
# Show information about the image.
oa_image.info()
# Display the image with matplotlib.
oa_image.view(how="matplotlib")
# Display the image with pyvista
# (great for ZYX 3D images; install extras: `pip install 'ome-arrow[viz]'`).
oa_image.view(how="pyvista")
# Export to OME-Parquet.
# We can also export OME-TIFF, OME-Zarr or NumPy arrays.
oa_image.export(how="ome-parquet", out="your_image.ome.parquet")Please see our contributing documentation for more details on contributions, development, and testing.
OME Arrow is used or inspired by the following projects, check them out!
napari-ome-arrow: enables you to view OME Arrow and related images.nViz: focuses on ingesting and visualizing various 3D image data.CytoDataFrame: provides a DataFrame-like experience for viewing feature and microscopy image data within Jupyter notebook interfaces and creating OME Parquet files.coSMicQC: performs quality control on microscopy feature datasets, visualized using CytoDataFrames.


