DeepOcSort
Bases: BaseTracker
DeepOCSort Tracker: A tracking algorithm that utilizes a combination of appearance and motion-based tracking.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
model_weights
|
str
|
Path to the model weights for ReID (Re-Identification). |
required |
device
|
str
|
Device on which to run the model (e.g., 'cpu' or 'cuda'). |
required |
fp16
|
bool
|
Whether to use half-precision (fp16) for faster inference on compatible devices. |
required |
per_class
|
bool
|
Whether to perform per-class tracking. If True, tracks are maintained separately for each object class. |
False
|
det_thresh
|
float
|
Detection confidence threshold. Detections below this threshold will be ignored. |
0.3
|
max_age
|
int
|
Maximum number of frames to keep a track alive without any detections. |
30
|
min_hits
|
int
|
Minimum number of hits required to confirm a track. |
3
|
iou_threshold
|
float
|
Intersection over Union (IoU) threshold for data association. |
0.3
|
delta_t
|
int
|
Time delta for velocity estimation in Kalman Filter. |
3
|
asso_func
|
str
|
Association function to use for data association. Options include "iou" for IoU-based association. |
'iou'
|
inertia
|
float
|
Weight for inertia in motion modeling. Higher values make tracks less responsive to changes. |
0.2
|
w_association_emb
|
float
|
Weight for the embedding-based association score. |
0.5
|
alpha_fixed_emb
|
float
|
Fixed alpha for updating embeddings. Controls the contribution of new and old embeddings in the ReID model. |
0.95
|
aw_param
|
float
|
Parameter for adaptive weighting between association costs. |
0.5
|
embedding_off
|
bool
|
Whether to turn off the embedding-based association. |
False
|
cmc_off
|
bool
|
Whether to turn off camera motion compensation (CMC). |
False
|
aw_off
|
bool
|
Whether to turn off adaptive weighting. |
False
|
Q_xy_scaling
|
float
|
Scaling factor for the process noise covariance in the Kalman Filter for position coordinates. |
0.01
|
Q_s_scaling
|
float
|
Scaling factor for the process noise covariance in the Kalman Filter for scale coordinates. |
0.0001
|
**kwargs
|
dict
|
Additional arguments for future extensions or parameters. |
{}
|
Source code in boxmot/trackers/deepocsort/deepocsort.py
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 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 |
|
update(dets, img, embs=None)
Requires: this method must be called once for each frame even with empty detections (use np.empty((0, 5)) for frames without detections). Returns the a similar array, where the last column is the object ID. NOTE: The number of objects returned may differ from the number of detections provided.
Source code in boxmot/trackers/deepocsort/deepocsort.py
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 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 |
|