Update track_objects.md

Added all the subtopics and 'what is tracking'
This commit is contained in:
Rajarshi Misra 2023-10-12 22:47:16 +05:30 committed by GitHub
parent f82f297f2e
commit b1f207f2ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -1 +1,9 @@
## How To: Track Objects
This is a tutorial to track object in a video using [ByteTrack](https://supervision.roboflow.com/trackers/#supervision.tracker.byte_tracker.core.ByteTrack).
### What is Tracking?
Tracking is an essential application of computer vision, which is used in mainly in videos or set of images which contain a sequence of events(the set of images could be simply frames of a video). It takes an initial set of detections from a video as per the requirement of the project, provides some unique identification to the detections and tracks as the position changes with time in a video. Supervision provides some powerful tools to track object in videos. This tutorial would cover how to make detections in a video, track those detections and then label them for unique identification using Supervision. Further, it would also cover how to trace the path covered by the detections.
### Step 1:Building a detection pipeline for videos
### Step 2:Tracking the detections
### Step 3:Labels the detections being tracked
### Step 4:Tracing the path of the detections
### Conclusion and further ideas