Skip to content

Commit

Permalink
Fixed tlbr track state bounding box representation
Browse files Browse the repository at this point in the history
  • Loading branch information
nwojke committed Jul 26, 2017
1 parent 6f5e05e commit b5aff4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deep_sort/track.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def to_tlbr(self):
"""
ret = self.to_tlwh()
ret[2:] = ret[:2] + ret[2:] / 2
ret[2:] = ret[:2] + ret[2:]
return ret

def predict(self, kf):
Expand Down

0 comments on commit b5aff4f

Please sign in to comment.