Skip to content

Commit 5016052

Browse files
authored
Update README.md
1 parent 68981f3 commit 5016052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ while True:
6464
# * `detection_bboxes` are numpy.ndarray of shape (n, 4) with each row containing (bb_left, bb_top, bb_width, bb_height)
6565
# * `detection_confidences` are numpy.ndarray of shape (n,);
6666
# * `detection_class_ids` are numpy.ndarray of shape (n,).
67-
output_tracks = tracker.track(detection_bboxes, detection_confidences, detection_class_ids)
67+
output_tracks = tracker.update(detection_bboxes, detection_confidences, detection_class_ids)
6868
# `output_tracks` is a list with each element containing tuple of
6969
# (<frame>, <id>, <bb_left>, <bb_top>, <bb_width>, <bb_height>, <conf>, <x>, <y>, <z>)
7070
for track in output_tracks:

0 commit comments

Comments
 (0)