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
- Host: GitHub
- URL: https://github.com/mpolinowski/opencv-python
- Owner: mpolinowski
- License: other
- Created: 2021-12-28T06:41:38.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-29T14:38:14.000Z (over 3 years ago)
- Last Synced: 2025-01-28T19:17:37.757Z (4 months ago)
- Topics: object-recognition, opencv, opencv2-python, python3
- Language: Python
- Homepage: https://mpolinowski.github.io/devnotes/2021-11-06--opencv-crash-course-part-i
- Size: 1.91 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```