Metadata-Version: 2.4
Name: famli-verse
Version: 0.1.0
Summary: Utilities for resampling and preparing FAMLI ultrasound datasets
License: Apache-2.0
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: SimpleITK
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: pydicom
Requires-Dist: opencv-python
Requires-Dist: tqdm

# famli-verse

Utilities for resampling and preparing FAMLI ultrasound datasets.

## Install

```bash
pip install -e .
```

## Console commands

- `famli-resample` — resample images/volumes (single file, directory, or CSV). See `famli-resample --help`.
- `famli-split-train-eval` — split a CSV/parquet dataset into train/validation/test sets. See `famli-split-train-eval --help`.

## Library

Core, CLI-independent functions live under `famli_verse.core`:

```python
from famli_verse.core import resample_lib

resampled = resample_lib.Resample("image.nrrd", size=[256, 256], fit_spacing=True)
```
