Introduction
主要用来系统解释tracking流程。
contributions are as follow:
- pipeline of “tracking-by-detection” ⇒ 4 components
- analyze the connections between each component and failure cases.
- propose corresponding treatments for each module ⇒ a strong yet simple baseline.
- analyze existing 3D MOT benchmarks and explain the potential influences of their designs.

- Pre-processing of Input Detections
- kill bounding boxes with low quality or severe overlapping
- use CenterPoint detection
- Motion Model
- in Prediction & motion model update
- Kalman filter or velocities
- Association
- associates the detections with tracklets
- ⇒ Generalized IoU metric
- Life Cycle Management
- controls the “birth”, “death” and “output” policies.
- ⇒ Two-stage Association
- the same as same as AB3DMOT [37]: 3 hits to start outputting a tracker and consecutive 2 misses terminates a tracklet
Pipeline: 4
Pre-processing

- Score vs NMS ⇒ NMS
- inaccurate input detections ⇒ contaminate the association.
- high score threshold ⇒ sacrifice the recall.
Tab 1 & 2Ablation for NMS on nuScenes & WOD.
Motion Model
- Kalman filter vs Constant velocity ⇒ what? it depends on the datasets.
-
similar performance in general
-
KF fits better for high frequency cases because of more predictable motions
Tab 3: KF, CV, KF PD ⇒ refinement is important for
-
CV is more robust for low-frequency scenarios with explicit speed prediction
Association