Skip to content

refactor structure

Mike edited this page Jul 7, 2023 · 3 revisions

Refactor:

boxmot ├── trackers │ ├── ocsort.py │ ├── bytetrack.py │ ├── deepocsort.py │ ├── ... │ └── strongsort.py ├── configs │ ├── ocsort.yml │ ├── bytetrack.yml │ ├── deepocsort.yml │ ├── ... │ └── strongsort.yml ├── motion │ ├── simple_kf.py │ ├── ... │ └── adaptive_kf.py ├── appearance │ ├── backbones │ │ ├── resnet50.py │ │ ├── resnet18.py │ │ ├── ... │ │ └── osnet.py │ ├── reid_multibackend.py │ └── reid_export.py └── utils ├── cmc.py # camera motion compensation ├── ... └── matching.py # fuse_iou, fuse_motion, bbox_ious...