Skip to content

Commit 1e687fa

Browse files
Create README.md
1 parent 59339d2 commit 1e687fa

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

FunnyMirrors/README.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
### Funny Mirrors using OpenCV
2+
3+
We show how to create some funny mirror effects using OpenCV. The blog is based on fundamental concepts like camera projection, intrinsic and extrinsic
4+
camera parameters and mesh-based image warping.
5+
6+
### Installing additional library
7+
```shell
8+
pip3 install vcam
9+
```
10+
11+
### How to run the code
12+
13+
Command line usage for running the code
14+
15+
* Python
16+
17+
* Running on sample images:
18+
19+
```
20+
python3 FunnyMirrorsImages.py
21+
```
22+
23+
* Running on a video file:
24+
25+
```
26+
python3 FunnyMirrorsVideo.py ./data/Video3.mp4 0
27+
```
28+
29+
The syntax here is `python3 FunnyMirrorsVideo.py <VIDEO_FILE_PATH> <MODE_NUMBER>`. The `MODE_NUMBER` ranges from 0 to 7.
30+
31+
32+
### Some funny mirrors generated
33+
<img src = "./Mirror-effect-1-image-3.jpg" width = 1000 height = 282/>
34+
<img src = "./Mirror-effect-5-image-3.jpg" width = 1000 height = 282/>
35+
36+
37+
38+
# AI Courses by OpenCV
39+
40+
Want to become an expert in AI? [AI Courses by OpenCV](https://opencv.org/courses/) is a great place to start.
41+
42+
<a href="https://opencv.org/courses/">
43+
<p align="center">
44+
<img src="https://www.learnopencv.com/wp-content/uploads/2020/04/AI-Courses-By-OpenCV-Github.png">
45+
</p>
46+
</a>
47+

0 commit comments

Comments
 (0)