Metadata-Version: 2.1
Name: pivimage
Version: 0.4.0
Summary: Small library reading images and providing PIV-specific utilities.
Home-page: https://github.com/matthiasprobst/pivimage
Author: Matthias Probst
Author-email: matthias.probst@kit.edu
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Scientific/Engineering
Requires-Python: <3.11,>=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: appdirs>=1.4.4
Requires-Dist: numpy
Requires-Dist: pco_tools>=1.0.0
Requires-Dist: opencv-python>=4.5.3.56
Requires-Dist: importlib-metadata>=5.0.0
Requires-Dist: matplotlib

# Pivimage

![Tests](https://github.com/matthiasprobst/pivimage/actions/workflows/tests.yml/badge.svg)
[![codecov](https://codecov.io/github/matthiasprobst/pivimage/graph/badge.svg?token=7H1BZ7NM1T)](https://codecov.io/github/matthiasprobst/pivimage)

**Note, that the project is still under development!**

`PIVimage` is a small library assisting with reading PIV images. It provides specific utilities to handle PIV images and
to perform certain operations on them, which are useful in the pre-processing stage of PIV analysis.

Available operations are ...

- rotating images
- interfacing with double frame images in one or two files
- plotting

More features will be added in the future.


## Installation

```bash
pip install pivimage
```

## Examples

<a target="_blank" href="https://colab.research.google.com/github/matthiasprobst/pivimage/blob/main/examples/Getting%20started.ipynb">
  <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/>
</a>

## Tests
Tests can be found in the folder `tests/`. They can be run with `pytest`:

```bash
pytest
```

Get a coverage report with

```bash
pytest --cov --cov-report html
```
