January 2019
Intermediate to advanced
386 pages
11h 13m
English
In this section, we'll demonstrate how to use the YOLOv3 object detector with OpenCV. For this example, you'll need OpenCV 3.4.2 or higher, and 250 MB of disk space for the pre-trained YOLO network. Let's begin with the following steps:
import os.pathimport cv2 # opencv importimport numpy as npimport requests
# Download YOLO net config file# We'll ...