December 2019
Intermediate to advanced
468 pages
14h 28m
English
In this section, we'll demonstrate how to use the YOLOv3 object detector with OpenCV. For this example, you'll need opencv-python 4.1.1 or higher, and 250 MB of disk space for the pretrained 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 it from the YOLO author's github repoyolo_config ...Read now
Unlock full access