Skip to content

Object detection using YOLOv3 and object tracking using centroid tracking.

Notifications You must be signed in to change notification settings

sanketvavadiya/ObjectTracking

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Object Tracking

Object tracking is the process of:

  1. Taking an initial set of object detections
  2. Creating a unique ID for each of the initial detections
  3. And then tracking each of the objects as they move around frames in a video, maintaining the assignment of unique IDs
    As described in first step, we should detect the from the each frame of video. Here YOLO object detection is used to detect the object in image/video frame. Implemention of yolo is in ObjectTracker.py. Next two steps are implemented in CentroidTracking/centroidtracker.py.

To run on video file: python ObjectTracker.py --input videos/car_chase_01.mp4 --confidence 0.5 --threshold 0.3
To run on web-camera: python ObjectTracker.py --input camera --confidence 0.5 --threshold 0.3

references/credit:
YOLO object detection with OpenCV
Simple object tracking with OpenCV

About

Object detection using YOLOv3 and object tracking using centroid tracking.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%