Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b7fc8aa

Browse files
author
Ling Evan
committedAug 18, 2022
readme update and version change to 1.3
1 parent 6ddaaeb commit b7fc8aa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎README.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Here we added an `orig` argument to all the `Track.to_*` methods. If `orig` is f
8080

8181
### Storing supplementary info of original detection
8282

83-
Supplementary info can be pass into the track from the detection. `Detection` class now has an `others` argument to store this and pass it to the associate track during update. Can be retrieved through `Track.get_det_supplementary` method.
83+
Supplementary info can be pass into the track from the detection. `Detection` class now has an `others` argument to store this and pass it to the associate track during update. Can be retrieved through `Track.get_det_supplementary` method. Can be passed in through `others` argument of `DeepSort.update_tracks`, expects to be a list with same length as `raw_detections`. Examples of when you will this includes passing in corresponding instance segmentation masks, to be consumed when iterating through the tracks output.
8484

8585
## Polygon support
8686

‎deep_sort_realtime/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1"
1+
__version__ = "1.3"

‎setup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="deep-sort-realtime",
8-
version="1.2",
8+
version="1.3",
99
author="levan92",
1010
author_email="lingevan0208@gmail.com",
1111
description="A more realtime adaptation of Deep SORT",

0 commit comments

Comments
 (0)
Please sign in to comment.