Metadata-Version: 2.1
Name: snake-opencv
Version: 0.1.0
Summary: Snake case opencv with type annotations
License: Apache-2.0
Author: cospectrum
Author-email: severinalexeyv@gmail.com
Requires-Python: >=3.8.1,<4.0.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Dist: opencv-python (>=4.0,<5.0)
Description-Content-Type: text/markdown

# Snake-OpenCV
Snake case OpenCV with type annotations for Python.

Note: Still in early development

## Install

```sh
git clone https://github.com/cospectrum/snake-opencv.git
cd snake-opencv && pip install .
```

## Usage
```py
import snake_opencv as cv

image = cv.imread(path)
image = cv.cvt_color(image, cv.COLOR_BGR2RGB)

cv.imshow(window_name, image) 
```

