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
- Host: GitHub
- URL: https://github.com/cospectrum/snake-opencv
- Owner: cospectrum
- License: apache-2.0
- Created: 2023-01-10T13:28:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-13T01:06:48.000Z (over 2 years ago)
- Last Synced: 2025-09-20T22:51:51.776Z (9 months ago)
- Topics: computer-vision, image-processing, opencv, opencv-python, python
- Language: Python
- Homepage:
- Size: 127 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
```