forked from spmallick/learnopencv
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc26121
commit d046caf
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Introduction to Epipolar Geometry and Stereo Vision | ||
|
||
## Compilation | ||
To compile the `stereo.cpp` code file, use the following: | ||
```shell | ||
mkdir build | ||
cd build | ||
cmake .. | ||
cmake --build . --config Release | ||
``` | ||
|
||
## Usage | ||
|
||
### Using the C++ code | ||
|
||
Refer to the following to use the compiled files: | ||
|
||
```shell | ||
./build/stereo | ||
``` | ||
|
||
### Using the python code | ||
|
||
Refer to the following to use the `stereo.py` file: | ||
|
||
```shell | ||
python3 stereo.py | ||
``` | ||
|
||
# AI Courses by OpenCV | ||
|
||
Want to become an expert in AI? [AI Courses by OpenCV](https://opencv.org/courses/) is a great place to start. | ||
|
||
<a href="https://opencv.org/courses/"> | ||
<p align="center"> | ||
<img src="https://www.learnopencv.com/wp-content/uploads/2020/04/AI-Courses-By-OpenCV-Github.png"> | ||
</p> | ||
</a> |