https://github.com/deveth0/python-opencv
Repository with some examples on OpenCV
https://github.com/deveth0/python-opencv
opencv python3 tutorials
Last synced: about 1 month ago
JSON representation
Repository with some examples on OpenCV
- Host: GitHub
- URL: https://github.com/deveth0/python-opencv
- Owner: deveth0
- License: apache-2.0
- Created: 2019-10-26T12:09:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-28T10:23:44.000Z (over 6 years ago)
- Last Synced: 2025-02-05T07:15:22.241Z (over 1 year ago)
- Topics: opencv, python3, tutorials
- Language: Python
- Size: 25.9 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OpenCV Python Examples
This repository contains severals examples on the usage of OpenCV in Python to do cool things.
## Projects
* Object Detection using YOLO: Detect Cats, Dogs, Birds and Stuff using a pretrained Model [README.md](objectDetection/README.md)
* Character Classification: Train and classify characters [README.md](characterClassification/README.md)
## Requirements
The differents projects have been tested using Python 3.7. You'll most likely need to install some additional software, depending on your system (e.g. using pip3):
```
pip3 install opencv-python numpy
```
## Acknowledgments
I used several sources to build the projects.
* [learnopencv.com](https://www.learnopencv.com/)
* [Github: OpenCV samples](https://github.com/opencv/opencv/tree/master/samples/python)
* [Github: Arun Ponnusamy - object-detection-opencv](https://github.com/arunponnusamy/object-detection-opencv)