Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 895 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 895 Bytes

Comm

Dependencies

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

Building

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