Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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*.

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)