- Minimal requirements
- Avoid ultralytics installation by default, only if Yolov8 model is used for tracking
- Avoid SG installation by default, only if YOLO-NAS is used for tracking
- Update OpenVINO export
- 33% CI speedup by lower `imgsz` resolution
- Boxmot paths imports. From:
python
FILE = Path(__file__).resolve()
ROOT = FILE.parents[0].parents[0] repo root absolute path
EXAMPLES = FILE.parents[0] examples absolute path
WEIGHTS = EXAMPLES / 'weights'
in each example file, to:
`from boxmot.utils import ROOT, EXAMPLES, WEIGHTS`