Skip to content

Correct Bounding Box Issue #82

@cczarnuch

Description

@cczarnuch

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.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions