- opencv (optional: enable with -DWITH_OPENCV=On when cmake-ing): not a specific version necessary (tested with >3.2 and >4.3), no opencv_contrib modules needed
- gcc: toolchain (for Linux and Windows (mingw))
Note: possibly working with the Visual Studio compiler as is... Build opencv (or use prebuild distributed files) for the OS and compiler you are using.
-
Step 0: If opencv needed, install Opencv like presented in the official documentation
-
Step 1:
cd <your_development_directory>
git clone https://github.com/AndreiCostinescu/Comm.git
cd Comm
mkdir build-release
cd build-release
# if on windows and you're using the gcc (mingw) toolchain add `-G "MinGW Makefiles"` to the command below
cmake .. -DCMAKE_BUILD_TYPE=Release -DWITH_OPENCV=On
make