Releases: mikel-brostrom/boxmot
Releases · mikel-brostrom/boxmot
Release v10.0.36
- Fix catastrophic OCSORT
det_ind
bug (#1080) - Minimize ByteTrack bbox operations
- Adapt BOTSORT to IoU matching changes
Release v10.0.35
-
Output detection index for each track in order to be able to match a pose estimation / segmentation mask to a specific track.
-
Previously the output was:
-
(x, y, x, y, id, conf, cls)
-
now it is:
-
(x, y, x, y, id, conf, cls, ind)
-
-
Adapted existing tests to new tracking output
-
StrongSORT fix so that it does not output predictions for non-existing detection indices inputs
Release v10.0.34
- Fix load custom yolox model
- Fix load custom yolonas model
Release v10.0.33
-
Detect number of classes for clip models automatically based on weights name:
- 'market1501': 751
- 'duke': 702
- 'veri': 576
- 'vehicleid': 576
- Previously the num classes was fixed to 751 (market1501) making all the other model loadings crash
-
Custom yolov8 models can now be loaded
-
Added imgsz to yolo arguments
Release v10.0.32
Yanked. No updates
Release v10.0.31
- ReID crops processing update: from Torchvision transforms to cv2 + numpy operations for full controll
- Feature extraction for crops moved from trackers into ReIDMultiBackend (https://github.com/mikel-brostrom/yolo_tracking/blob/0028c066d700f5e60d456c16a68860f58e3a8838/boxmot/appearance/reid_multibackend.py#L297C12-L304)
- Optimize detections feature extraction
- Adapt tracking options with appearance to all these changes
- Added missing
__init__.py
to lmbn folder
Release v10.0.30
- Move save path from EXAMPLES (
yolo_tracking/examples/runs
) to ROOT (yolo_tracking/runs
) - Videos / frames and
.txt
results are now saved to the same folder - Classes passed from val to track
- Fixed file not found in colab due to modified
save_dir
- Fixed colab after all these modifications
Release v10.0.29
- Added warmup for ReID models
- StrongSORT optimization (minimized bbox conversions) & cleanup
Release v10.0.28
- Added LICENSE banner to all
.py
files - Deleted unused backbones
Release v10.0.27
- Fix dynamic input TFLite export: PINTO0309/onnx2tf#441
- Test reid exports: torchscript, openvino, onnx and tflite
- Set default values for bytetrack