Skip to content

Releases: mikel-brostrom/boxmot

Release v10.0.83

16 Sep 07:44
9085d16
Compare
Choose a tag to compare

Implemented Height Modulated IoU (HMIoU) (https://arxiv.org/pdf/2308.00783)
Fix StrongSORT and test it in CI (#1627)

Release v10.0.82

07 Sep 09:45
eab85cd
Compare
Choose a tag to compare
  • added args descriptions to all trackers
  • optuna now upgraded to ray in evolve dependencies

Release v10.0.81

05 Sep 20:43
7662c5f
Compare
Choose a tag to compare

tracking per class decorator moved into basetracker

Release v10.0.80

05 Sep 07:58
b1c9f29
Compare
Choose a tag to compare

max_time_lost now equal to buffer_size in BoTSORT and ImprAssoc, following their original implementations (#1608)

Release v10.0.79

03 Sep 07:16
ab49d69
Compare
Choose a tag to compare

Add missing virtual trajectory tracking over occlusion periods for OCSORT, HybridSORT and DeepOCSORT (#1601)

Release v10.0.78

22 Aug 16:29
2ccdf4e
Compare
Choose a tag to compare

plot_results now takes in thickness and font_scale by @LanluZ

Release v10.0.77

05 Aug 18:21
c89258f
Compare
Choose a tag to compare

Make it possible to pass embs externally to trackers:

from boxmot.tracker_zoo import create_tracker
import numpy as np

model = create_tracker(
      'botsort',
      tracker_config=config_path,
      reid_weights=Path('osnet_x0_25_msmt17.pt'),
      device='cpu',
      half=False,
      per_class=False
)

dets = np.random.rand(5, 6)
rgb = np.random.randint(255, size=(640, 640, 3), dtype=np.uint8)
embs = np.random.rand(5, 512)

outputs = model.update(
    dets,
    img,
    embs
)

Release v10.0.76

02 Aug 07:57
20f7c88
Compare
Choose a tag to compare
Merge pull request #1556 from mikel-brostrom/pass-embs

pass external embs to trackers

Release v10.0.75

22 Jul 21:02
d67cedd
Compare
Choose a tag to compare
  • Noise covariance search enabled for OCSORT and DeepOCSROT by @edblu1 in (#1484)
  • Added Improved Association Pipeline Tracker by @rolson24 in (#1527)
  • Refactor requirements checker
  • Complete exporters refactor
  • Complete auto-backend refactor
  • Complete Kalman Filters refactor
  • Enabled TFLite ReID export and inference
  • Implemented benchmarking in CI for all trackers on very small subset of MOT17

Release v10.0.73

13 Jun 17:41
c50a130
Compare
Choose a tag to compare
  • Implemented dynamic deque lenghts based on max_age (fixes #1480)
  • CPU torch & torchvision CI installation by simple sed command on pyproject.toml file in CI pipeline
  • Enable MPS / CUDA detection and embedding generation by @johnnynunez (#1476)
  • Fix MacOS detection and embedding generation by @johnnynunez (#1475)