-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
YOLOv5 produces output bounding boxes of the format TLWH (top-left, width, height). The bounding boxes deepsort takes as input are of the format XYWH (center x, y, width, height). During the deepsort run() function the bounding boxes' features are determined using the XYWH format, then they are converted to TLWH format. The TLWH format is used to create a Detection object which is updated in the tracker.predict() method. The output boxes are saved as a TLWH format bounding box and then converted to XYWH format bounding box.
The goal of this story will be to not only correct the bounding boxes, but also to ensure that the least number of conversions between boxes are done. Another goal would be to remove unused conversion functions.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels