March 2020
Intermediate to advanced
366 pages
9h 8m
English
The main script will be responsible for the complete logic of the app. It will process a video stream and use an object-detection deep convolutional neural network combined with the tracking algorithm that we will prepare later in this chapter.
The algorithm is used to track objects from frame to frame. It will also be responsible for illustrating results. The script will accept arguments and have some intrinsic constants, which are defined in the following initialization steps of the script:
import argparseimport cv2import numpy as npfrom classes import CLASSES_90from sort import Sort
We will use argparse as we want our script to accept ...
Read now
Unlock full access