March 2019
Intermediate to advanced
312 pages
7h 37m
English
Once we have installed these packages, we can move on to OpenCV. Let's begin by downloading Open CV 4.0:
wget -O opencv.zip https://github.com/opencv/opencv/archive/4.0.0.zip
Download the opencv_contrib repository, which contains some additional modules. Enter the following command:
wget -O opencv_contrib.zip https://github.com/opencv/opencv_contrib/archive/4.0.0.zip
The commands in step 1 and step 2 are both single-line commands.
unzip opencv.zip
unzip opencv_contrib.zip
After unzipping opencv and opencv_contrib, you ...