lpylpy0514
Merge pull request #194 from lpylpy0514:main
435e017
|
raw
history blame
1.91 kB

VIT tracker

VIT tracker(vision transformer tracker) is a much better model for real-time object tracking. VIT tracker can achieve speeds exceeding nanotrack by 20% in single-threaded mode with ARM chip, and the advantage becomes even more pronounced in multi-threaded mode. In addition, on the dataset, vit tracker demonstrates better performance compared to nanotrack. Moreover, vit trackerprovides confidence values during the tracking process, which can be used to determine if the tracking is currently lost.

video demo: https://youtu.be/MJiPnu1ZQRI In target tracking tasks, the score is an important indicator that can indicate whether the current target is lost. In the video, vit tracker can track the target and display the current score in the upper left corner of the video. When the target is lost, the score drops significantly. While nanotrack will only return 0.9 score in any situation, so that we cannot determine whether the target is lost.

NOTE: OpenCV > 4.8.0

speed test

NOTE: The speed below is tested by onnxruntime because opencv has poor support for the transformer architecture for now.

ONNX speed test on ARM platform(apple M2)(ms):

thread nums 1 2 3 4
nanotrack 5.25 4.86 4.72 4.49
vit tracker 4.18 2.41 1.97 1.46 (3X)

ONNX speed test on x86 platform(intel i3 10105)(ms):

thread nums 1 2 3 4
nanotrack 3.20 2.75 2.46 2.55
vit tracker 3.84 2.37 2.10 2.01

performance test

preformance test on lasot dataset(AUC is the most important data. Higher AUC means better tracker):

LASOT AUC P Pnorm
nanotrack 46.8 45.0 43.3
vit tracker 48.6 44.8 54.7