Skip to content

Commit b24bae5

Browse files
author
bochinski
committed
fixes bochinski#13
1 parent 9929e44 commit b24bae5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mot16.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main(args):
2525
det_path = args.benchmark_dir + "/" + seq + "/det/det.txt"
2626
out_path = args.res_dir + "/" + seq + ".txt"
2727

28-
detections = load_mot(det_path)
28+
detections = load_mot(det_path, with_classes=False)
2929

3030
start = time()
3131
tracks = track_iou(detections, args.sigma_l, args.sigma_h, args.sigma_iou, args.t_min)

mot17.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def main(args):
4545
det_path = args.benchmark_dir + "/" + seq + "/det/det.txt"
4646
out_path = args.res_dir + "/" + seq + ".txt"
4747

48-
detections = load_mot(det_path)
48+
detections = load_mot(det_path, with_classes=False)
4949

5050
start = time()
5151
tracks = track_iou(detections, sigma_l, sigma_h, sigma_iou, t_min)

0 commit comments

Comments
 (0)