This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://www.pyimagesearch.com/2018/08/06/tracking-multiple-objects-with-opencv/ | |
# USAGE | |
# python multi_object_tracking.py --video videos/soccer_01.mp4 --tracker csrt | |
# import the necessary packages | |
from imutils.video import VideoStream | |
import argparse | |
import imutils | |
import time |