Metadata-Version: 2.1
Name: OpenRV
Version: 0.1.6.5
Summary: UNKNOWN
Home-page: https://github.com/OpenRoboVision/OpenRV
Author: kivicode
Author-email: kivicode@yandex.com
License: GNU GPLv3
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Description-Content-Type: text/markdown
Requires-Dist: numpy (>=1.6)
Requires-Dist: opencv-python (<4.0)
Requires-Dist: scikit-image (>=0.16)
Requires-Dist: imutils (>=0.5.3)
Requires-Dist: scipy (>=1.3.1)
Requires-Dist: sklearn

# About

OpenRV is a open source wrapper for such computer vision libs as OpenCV, SciKit and imutils. The main idea of the project is to join lots of frequently used functions and utils under the complex classes to make the developing process easier and faster. 

So, according to the conception of this project feel free to request for a function/feature that you think can be useful for developing.

## Installation
Python 3.x is required.

Using pip:
``` shell
$ python3 -m pip install openrv
```

From source:
1) Download this repo
2) `$ python3 setup.py install`

Import: 
```python
from openrv import *
```

## Basics

 The library contains three(for now) classes: `Image`, `Contour`, `Contours`.


