BYTETracker C# implementation of ByteTrack that does not include an object detection algorithm. The implementation is based on "ByteTrack-cpp". (https://github.com/derpda/ByteTrack-cpp/) Only tracking algorithm are implemented. Any object detection algorithm can be easily combined. Some code has been modified to obtain the same processing results as the original code below. https://github.com/ifzhang/ByteTrack/tree/main/deploy/ncnn/cpp https://github.com/ifzhang/ByteTrack/tree/main/yolox/tracker.
More...
|
| BYTETracker (int frame_rate=30, int track_buffer=30, float track_thresh=0.5f, float high_thresh=0.6f, float match_thresh=0.8f, bool mot20=false) |
|
void | Clear () |
|
List< Track > | Update (List< Detection > input_detections) |
|
BYTETracker C# implementation of ByteTrack that does not include an object detection algorithm. The implementation is based on "ByteTrack-cpp". (https://github.com/derpda/ByteTrack-cpp/) Only tracking algorithm are implemented. Any object detection algorithm can be easily combined. Some code has been modified to obtain the same processing results as the original code below. https://github.com/ifzhang/ByteTrack/tree/main/deploy/ncnn/cpp https://github.com/ifzhang/ByteTrack/tree/main/yolox/tracker.
◆ BYTETracker()
OpenCVForUnity.UnityUtils.MOT.ByteTrack.BYTETracker.BYTETracker |
( |
int | frame_rate = 30, |
|
|
int | track_buffer = 30, |
|
|
float | track_thresh = 0::5f, |
|
|
float | high_thresh = 0::6f, |
|
|
float | match_thresh = 0::8f, |
|
|
bool | mot20 = false ) |
- Parameters
-
frame_rate | frame rate (fps). |
track_buffer | the frames for keep lost tracks. |
track_thresh | tracking confidence threshold. |
high_thresh | confidence threshold for new tracking to be added. (track_thresh + 1) |
match_thresh | matching threshold for tracking. |
mot20 | test mot20. |
◆ Clear()
void OpenCVForUnity.UnityUtils.MOT.ByteTrack.BYTETracker.Clear |
( |
| ) |
|
◆ Update()
List< Track > OpenCVForUnity.UnityUtils.MOT.ByteTrack.BYTETracker.Update |
( |
List< Detection > | input_detections | ) |
|
The documentation for this class was generated from the following file:
- OpenCVForUnity/Assets/OpenCVForUnity/org/opencv/unity/MultiObjectTracking/ByteTrack/BYTETracker.cs