StrongSort
Paper: StrongSORT: Make DeepSORT Great Again
StrongSORT revisits DeepSORT and shows that a stronger baseline matters. The paper improves the detector and appearance encoder, adds better motion handling and camera compensation, and then layers on lightweight postprocessing ideas to recover missed links and detections. The core message is that a carefully engineered DeepSORT-style tracker can remain competitive without changing the online MOT formulation.
What BoxMOT Needs For StrongSort
- A detector plus a ReID model. Appearance cues are central to this tracker.
- AABB detections only in BoxMOT.
- Good when appearance matching matters more than raw speed, especially for pedestrian-style MOT benchmarks.
Bases: BaseTracker
Initialize the StrongSort tracker.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
reid_weights
|
Path
|
Path to the ReID model weights. |
required |
device
|
device
|
Device used for ReID inference. |
required |
half
|
bool
|
Whether to use half precision for ReID inference. |
required |
min_conf
|
float
|
Minimum confidence threshold for detections. |
0.1
|
max_cos_dist
|
float
|
Maximum cosine distance accepted by the nearest-neighbor metric. |
0.2
|
max_iou_dist
|
float
|
Maximum IoU distance used during association. |
0.7
|
n_init
|
int
|
Number of consecutive hits required to confirm a track. |
3
|
nn_budget
|
int
|
Maximum number of appearance features stored per track. |
100
|
mc_lambda
|
float
|
Motion-consistency weight used by StrongSORT. |
0.98
|
ema_alpha
|
float
|
Exponential moving average coefficient for appearance features. |
0.9
|
**kwargs
|
Any
|
Base tracker settings forwarded to :class: |
{}
|
Attributes:
| Name | Type | Description |
|---|---|---|
model |
ReID model used for appearance extraction. |
|
tracker |
Tracker
|
Internal StrongSORT tracker instance. |
cmc |
Camera-motion compensation method. |
Source code in boxmot/trackers/strongsort/strongsort.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 | |