An open API service indexing awesome lists of open source software.

https://github.com/cospectrum/snake-opencv

Snake case OpenCV with type annotations for Python
https://github.com/cospectrum/snake-opencv

computer-vision image-processing opencv opencv-python python

Last synced: 9 months ago
JSON representation

Snake case OpenCV with type annotations for Python

Awesome Lists containing this project

README

          

# Snake-OpenCV

Snake case OpenCV with type annotations for Python.

Note: still in early development

## Install

```sh
pip install snake-opencv
```

## Usage
```py
import snake_opencv as cv

path = '..'
image = cv.imread(path)
assert image is not None
gray_image = cv.cvt_color(image, cv.COLOR_BGR2GRAY)

cv.imshow(window_name, gray_image)
```