Metadata-Version: 2.4
Name: biopb
Version: 0.1.3
Summary: Python bindings of BioPB: open protobuf/gRPC protocols for biomedical image processing
Author-email: Ji Yu <jyu@uchc.edu>
License-Expression: MIT
Project-URL: Homepage, https://github.com/biopb/biopb
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: protobuf>=6.32.1
Requires-Dist: grpcio
Requires-Dist: numpy
Provides-Extra: test
Requires-Dist: pytest<8,>=7.0; extra == "test"
Dynamic: license-file

# BioPB
A place for collecting protobuf/gRPC definitions for bio-imaging data. Currently it has only two packages

1. `biopb.ome` Microscopy data representation modeled after [OME-XML](https://ome-model.readthedocs.io/en/stable/ome-xml/index.html).
2. `biopb.image` Image processing protocols. Current focus is single-cell segmentation, designed originally for the [Lacss](https://github.com/jiyuuchc/lacss/) project.


## Documentation
[Documentation](https://buf.build/jiyuuchc/biopb/)

## Python binding
A python binding of schema is included in this repo. The package additionally implements some utility functions for data conversion between _numpy_ <--> _protobuf_.

``` sh
pip install biopb
```

## Related project
* [`napari-biopb`](https://github.com/jiyuuchc/napari-biopb) is a [Napari](https://napari.org) widget and a `biopb.image` client, allowing users to perform 2D/3D single-cell segmentation within the Napari environement.
* [`trackmate-lacss`](https://github.com/jiyuuchc/TrackMate-Lacss) is a [`FIJI`](https://imagej.net/software/fiji/) plugin and a `biopb.image` client, designed as a cell detector/segmentor for [trackmate](https://imagej.net/plugins/trackmate/index). It works with any `biopb.image` servers, such as those listed above.
