SysCV / qdtrack

Quasi-Dense Similarity Learning for Multiple Object Tracking, CVPR 2021 (Oral)
Apache License 2.0
384 stars 61 forks source link

from ..evaluation import xyxy2xywh #84

Closed taheranjary closed 2 years ago

taheranjary commented 3 years ago

Hi there.

The aforementioned import statement fails in qdtrack/qdtrack/core/to_bdd100k/transforms.py

I have instead implemented the following function: def xyxy2xywh(self, bbox): _bbox = bbox.tolist() return [ _bbox[0], _bbox[1], _bbox[2] - _bbox[0], _bbox[3] - _bbox[1], ] Is this reasonable or are there customized lines of code that you intended to have?