OpenCV Explorer is a C++ project for experimenting with the OpenCV library for computer vision tasks.
- CMake 3.22 or higher
- GCC or any compatible C++ compiler
- C++ standard version 11 or later
- OpenCV library
-
Clone the repository:
git clone https://github.com/hgorges/opencv-explorer.git cd opencv-explorer
-
Create a build directory and navigate into it:
mkdir build cd build
-
Configure the project with CMake:
cmake ..
-
Build the project:
make -j$(nproc)
After building the project, you can run the executable:
./opencv_explorer ../res/duck.jpg
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.