Metadata-Version: 2.1
Name: imgrvt
Version: 1.0.0
Summary: Radial variance transform
Home-page: https://github.com/AlexShkarin/rvt
Author: Alexey Shkarin
Author-email: alex.shkarin@gmail.com
License: UNKNOWN
Project-URL: Documentation, https://github.com/AlexShkarin/rvt
Project-URL: Source, https://github.com/AlexShkarin/rvt
Project-URL: Tracker, https://github.com/AlexShkarin/rvt/issues
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Image Processing
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scipy

# Radial Variance Transform

This is the Python implementation of the radial variance transform described in the [original paper](https://doi.org/10.1364/OE.420670)

## Installation

This code is available as a PyPi package:
```
pip install imgrvt
```

You can use it as
```python
import imgrvt as rvt

transformed=rvt.rvt(image,rmin=2,rmax=25)
```

The details and application recommendations are described in the [tutorial](https://github.com/AlexShkarin/rvt/blob/main/docs/tutorial.md).

