March 2020
Intermediate to advanced
366 pages
9h 8m
English
To run our app, we will need to execute the main() function routine. The following steps show us the execution of main() routine:
import cv2 as cvfrom feature_matching import FeatureMatchingdef main(): capture = cv.VideoCapture(0) assert capture.isOpened(), "Cannot connect to camera"
capture.set(cv.CAP_PROP_FPS, 10) ...
Read now
Unlock full access