CanvasCV: Linux installation
CanvasCV  1.0.0
Linux installation

Build dependencies

Make sure these are installed first and that their executables are in your path:

  • cmake - should already be installed since you built OpenCV by yourself.
  • git (optional) - you can also download the sources from GitHub.

Prepare to build

git clone https://github.com/sagi-z/CanvasCV.git
cd CanvasCV
git checkout tags/1.0.0
mkdir build
cd build


Building without the C++ examples

cmake ..
make


Build with the examples

cmake -DBUILD_EXAMPLES=ON ..
make


Install option 1

sudo make install


Install option 2 - cleaner

cpack -G DEB
sudo dpkg -i ./canvascv-1.0.0-Linux.deb