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

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

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)