SudokuGrabber tutorial implementation by {EPITECH.} students using C++ and OpenCV.
mkdir build
cd build
cmake ..
make
cd ..
./SudokuGrabber
If you got this error:
Could not find a package configuration file provided by "OpenCV" with any of the following names...
compile the OpenCV 3.x library and use cmake like this:
OpenCV_DIR=<path_to_opencv_lib> cmake ..