FishEye8K / strong_sort /__init__.py
thai thong
add file to build StrongSORT
9e56ba5
raw
history blame
510 Bytes
from .strong_sort import StrongSORT
__all__ = ['StrongSORT', 'build_tracker']
def build_tracker(cfg, use_cuda):
return StrongSORT(cfg.STRONGSORT.REID_CKPT,
max_dist=cfg.STRONGSORT.MAX_DIST, min_confidence=cfg.STRONGSORT.MIN_CONFIDENCE,
nms_max_overlap=cfg.STRONGSORT.NMS_MAX_OVERLAP, max_iou_distance=cfg.STRONGSORT.MAX_IOU_DISTANCE,
max_age=cfg.STRONGSORT.MAX_AGE, n_init=cfg.STRONGSORT.N_INIT, nn_budget=cfg.STRONGSORT.NN_BUDGET, use_cuda=use_cuda)