Search icon CANCEL
Subscription
0
Cart icon
Cart
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
The Computer Vision Workshop

You're reading from  The Computer Vision Workshop

Product type Book
Published in Jul 2020
Publisher Packt
ISBN-13 9781800201774
Pages 568 pages
Edition 1st Edition
Languages
Authors (3):
Hafsa Asad Hafsa Asad
Profile icon Hafsa Asad
Vishwesh Ravi Shrimali Vishwesh Ravi Shrimali
Profile icon Vishwesh Ravi Shrimali
Nikhil Singh Nikhil Singh
Profile icon Nikhil Singh
View More author details
Toc

6. Object Tracking

Activity 6.01: Implementing Autofocus Using Object Tracking

Solution:

  1. Create a new Jupyter Notebook called Activity6.01.ipynb. We will be writing our code in this.
  2. First, import the modules we will need:
    # Import modules
    import cv2
    import numpy as np
    import dlib
  3. Next, create a VideoCapture object and check whether it opened successfully or not:

    Note

    The video can be downloaded from https://packt.live/2NHXwpp. Before proceeding, ensure that you can change the path to the video (highlighted) based on where the video is saved in your system.

    # Create a VideoCapture Object
    video = cv2.VideoCapture("../data/soccer2.mp4")
    # Check if video opened successfully
    if video.isOpened() == False:
        print("Could not open video!")
  4. Next, capture the first frame of the video and check whether we are able to read the frame successfully or not:
    # Read first frame
    ret, frame = video.read()
    # Check if frame read successfully
    if...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}