Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork1.8k
refactor structure
Mike edited this pageJul 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...