Metadata-Version: 2.1
Name: empanada-dl
Version: 0.1.7
Summary: Algorithms for Panoptic Segmentation of organelles in EM
Home-page: https://github.com/volume-em/empanada
Author: Ryan Conrad
Author-email: conradrw@nih.gov
License: BSD-3-Clause
Project-URL: Bug Tracker, https://github.com/volume-em/empanada/issues
Project-URL: Documentation, https://github.com/volume-em/empanada#README.md
Project-URL: Source Code, https://github.com/volume-em/empanada
Project-URL: User Support, https://github.com/volume-em/empanada/issues
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: BSD License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: torch (>=1.10)
Requires-Dist: torchvision (>=0.2)
Requires-Dist: numpy (==1.22)
Requires-Dist: numba (>=0.54)
Requires-Dist: zarr (>=2.12)
Requires-Dist: opencv-python (>=4.5.3)
Requires-Dist: scikit-image (>=0.19)
Requires-Dist: albumentations (>=1.2)
Requires-Dist: dask (>=2022.5.2)
Requires-Dist: connected-components-3d (>=3.10)
Requires-Dist: matplotlib
Requires-Dist: pyyaml
Requires-Dist: cztile
Requires-Dist: imagecodecs
Provides-Extra: all
Requires-Dist: mlflow ; extra == 'all'

# empanada

## Overview

empanada (**EM** **Pan**optic **A**ny **D**imension **A**nnotation) is a tool for panoptic segmentation of organelles in 2D and 3D electron microscopy (EM) images.
Panoptic segmentation combines both instance and semantic segmentation enabling a holistic approach to image annotation
with a single deep learning model. To make model training and inference lightweight and broadly applicable to many EM
imaging modalities, empanada runs all expensive operations on 2D images or run length encoded versions of 3D volumes.

**Note: Development is active and breaking changes should be expected. Not all features are implemented.**

## Highlights

  - Train 2D panoptic segmentation models by customizing easy to read .yaml config files.
  - Get better models faster by using state-of-the-art CEM pretrained model weights to initialize training.
  - Run models on 2D images, videos, or isotropic and anisotropic volumes with orthoplane and stack inference, respectively.
  - Export GPU and quantized CPU trained models for use in napari with [empanada-napari](https://github.com/volume-em/empanada-napari).

## Installation

Install empanada with pip:

```shell
pip install empanada-dl
```

To install the latest development version of empanada directly from GitHub:

```shell
pip install git+https://github.com/volume-em/empanada.git
```
