Metadata-Version: 2.4
Name: cuws
Version: 0.0.4
Summary: CuWS implements watershed segmentation from minima on GPUs.
Author-email: Jordao Bragantini <jordao.bragantini@czbiohub.org>
Requires-Python: >=3.11
Requires-Dist: cupy
Provides-Extra: dev
Requires-Dist: edt; extra == 'dev'
Requires-Dist: napari; extra == 'dev'
Requires-Dist: pytest>=8.3.0; extra == 'dev'
Description-Content-Type: text/markdown

# CuWS

GPU-accelerated watershed segmentation from minima using CuPy.

This implements only the watershed from minima algorithm, not the seeded watershed.

## Installation

```bash
pip install cuws
```

## Usage

```python
from cuws import watershed_from_minima

...

labels = watershed_from_minima(image, mask)
```

## Requirements

- Python >= 3.11
- CUDA-compatible GPU
- CuPy
