Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrcfps/opencv-by-example
Code samples from *OpenCV by Examples*.
https://github.com/mrcfps/opencv-by-example
Last synced: 19 days ago
JSON representation
Code samples from *OpenCV by Examples*.
- Host: GitHub
- URL: https://github.com/mrcfps/opencv-by-example
- Owner: mrcfps
- Created: 2018-11-12T12:17:16.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-12T12:49:50.000Z (about 6 years ago)
- Last Synced: 2024-11-05T15:50:35.564Z (2 months ago)
- Language: C++
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OpenCV by Example
Code samples from the Packt book *OpenCV by Example* (2016).
## How to run
Make sure you have [OpenCV](https://opencv.org/) installed. Each directory under the chapter directory is a standalone [CMake](https://cmake.org/) project. Enter one project and run following commands:
```bash
$ mkdir build
$ cd build
$ cmake .. && make
```## Basics of OpenCV
- [Reading and writing images](./Chapter2/RWImage)
- [Reading videos and cameras](./Chapter2/ReadVideo)
- [Data persistence and storage](./Chapter2/FileStorage)