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

https://github.com/mpolinowski/opencv-python

OpenCV2 Crash Course
https://github.com/mpolinowski/opencv-python

object-recognition opencv opencv2-python python3

Last synced: 3 months ago
JSON representation

OpenCV2 Crash Course

Awesome Lists containing this project

README

        

# OpenCV2 Crash Course

* [Course Notes Part I](https://mpolinowski.github.io/devnotes/2021-11-06--opencv-crash-course-part-i)
* [Course Notes Part II](https://mpolinowski.github.io/devnotes/2021-11-07--opencv-crash-course-part-ii)

## Setup

```bash
git clone https://github.com/mpolinowski/opencv-python.git
cd opencv-python
python -m venv .env
pip install opencv-python numpy
```

You can re-enter the environment with:

```bash
source .env/bin/activate
```

## How to Use

Just run the scripts in Python, e.g.:

```bash
python ./09_face_detection.py
```