Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/jbarbadillo/opencvsample

A sample project structure for C++ OpenCV based libraries
https://github.com/jbarbadillo/opencvsample

Last synced: 6 days ago
JSON representation

A sample project structure for C++ OpenCV based libraries

Awesome Lists containing this project

README

        

# OpenCVSample
A sample project structure for C++ OpenCV based libraries

## Building the project

First you need to clone the project using git

```
git clone [email protected]:jbarbadillo/OpenCVSample.git
```

Install OpenCV and CMake. For building the project use CMake commands

```
cd build
cmake ..
make
```

## Understanding the library and samples

The library CutDetector is the core of the project. Provides a method for detecting cuts in images.
The use of the library is shown in the sample called sample_circular_cut.

Image data is captured from file and passed to the library. First the constructor initializes some required values. Then the library function
detectCuts performs the vision algorithms and returns the results.