We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68981f3 commit 5016052Copy full SHA for 5016052
README.md
@@ -64,7 +64,7 @@ while True:
64
# * `detection_bboxes` are numpy.ndarray of shape (n, 4) with each row containing (bb_left, bb_top, bb_width, bb_height)
65
# * `detection_confidences` are numpy.ndarray of shape (n,);
66
# * `detection_class_ids` are numpy.ndarray of shape (n,).
67
- output_tracks = tracker.track(detection_bboxes, detection_confidences, detection_class_ids)
+ output_tracks = tracker.update(detection_bboxes, detection_confidences, detection_class_ids)
68
# `output_tracks` is a list with each element containing tuple of
69
# (<frame>, <id>, <bb_left>, <bb_top>, <bb_width>, <bb_height>, <conf>, <x>, <y>, <z>)
70
for track in output_tracks:
0 commit comments