BoostTrack
Paper: BoostTrack++: Using Tracklet Information to Detect More Objects in Multiple Object Tracking
BoostTrack++ focuses on a neglected part of MOT pipelines: deciding which detections are worth trusting in the first place. The paper extends BoostTrack by using tracklet history to build a richer similarity score, then boosts low-confidence detections when past evidence suggests they are real objects. In practice, that improves recall and identity stability without giving up the online tracking-by-detection setup.
What BoxMOT Needs For BoostTrack
- A detector and, by default, a ReID model for the full configuration.
- AABB detections only in BoxMOT.
- Best when low-confidence true positives are a recurring problem and you want stronger association scoring than plain IoU or Mahalanobis distance.
Tuning notes
Adaptive Kalman Filter (adaptive_kf)
When enabled, the process noise covariance Q is estimated online from innovation statistics (Mehra 1970) rather than kept constant. A sliding window (30 frames, warmup 15) accumulates the Kalman innovations, and once warmed up the estimated Q is blended (α = 0.7) with the default static Q.
When to use it:
- Deploying to a new domain where you have no ground truth to run
--tune-kf. - Scenes where camera motion compensation (CMC) may fail intermittently (low-texture, rain, night).
- Camera dynamics that vary significantly within a single sequence (e.g., drone footage alternating hover and fast sweep).
When NOT to use it:
- You already have a tuned static Q from
boxmot eval --tune-kfon representative data — the static solution is cheaper and deterministic. - Very short tracks (< 15 frames) dominate; the estimator never exits warmup so it adds overhead with no benefit.
Enable it from the CLI:
Or in the tracker config YAML:
Bases: BaseTracker
Initialize the BoostTrack tracker.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
reid_model
|
Any | None
|
Pre-built ReID backend model (e.g. |
None
|
use_cmc
|
bool
|
Whether to enable camera-motion compensation. |
True
|
min_box_area
|
int
|
Minimum detection area. |
10
|
aspect_ratio_thresh
|
float
|
Maximum accepted aspect ratio. |
1.6
|
cmc_method
|
str
|
Camera-motion compensation method. |
'ecc'
|
lambda_iou
|
float
|
Weight applied to IoU association. |
0.5
|
lambda_mhd
|
float
|
Weight applied to Mahalanobis association. |
0.25
|
lambda_shape
|
float
|
Weight applied to shape similarity. |
0.25
|
use_dlo_boost
|
bool
|
Whether to enable DLO boosting. |
True
|
use_duo_boost
|
bool
|
Whether to enable DUO boosting. |
True
|
dlo_boost_coef
|
float
|
Coefficient used by DLO boosting. |
0.65
|
s_sim_corr
|
bool
|
Whether to enable shape-similarity correction. |
False
|
use_rich_s
|
bool
|
Whether to enable rich shape features. |
False
|
use_sb
|
bool
|
Whether to enable soft-BIoU. |
False
|
use_vt
|
bool
|
Whether to enable visual tracking cues. |
False
|
with_reid
|
bool
|
Whether to enable ReID features. |
False
|
reid_model
|
Any | None
|
Pre-built ReID backend model (e.g. |
None
|
**kwargs
|
Any
|
Base tracker settings forwarded to :class: |
{}
|
Attributes:
| Name | Type | Description |
|---|---|---|
frame_count |
int
|
Number of processed frames. |
active_tracks |
list
|
Currently active tracks. |
trackers |
list[KalmanBoxTracker]
|
Internal Kalman trackers. |
cmc |
Camera-motion compensation method when enabled. |
|
reid_model |
ReID model used for appearance extraction when enabled. |
Source code in boxmot/trackers/bbox/boosttrack.py
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 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 | |