Skip to content

Commit a90f3cc

Browse files
committed
Create README.md
1 parent 5632a67 commit a90f3cc

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# OpenCV2 Crash Course
2+
3+
* [Course Notes Part I](https://mpolinowski.github.io/devnotes/2021-11-06--opencv-crash-course-part-i)
4+
* [Course Notes Part II](https://mpolinowski.github.io/devnotes/2021-11-07--opencv-crash-course-part-ii)
5+
6+
7+
## Setup
8+
9+
```bash
10+
git clone https://github.com/mpolinowski/opencv-python.git
11+
cd opencv-python
12+
python -m venv .env
13+
pip install opencv-python numpy
14+
```
15+
16+
You can re-enter the environment with:
17+
18+
```bash
19+
source .env/bin/activate
20+
```
21+
22+
## How to Use
23+
24+
Just run the scripts in Python, e.g.:
25+
26+
27+
```bash
28+
python ./09_face_detection.py
29+
```

0 commit comments

Comments
 (0)