got-10k / toolkit

Official Python toolkit for generic object tracking benchmark GOT-10k and beyond
http://got-10k.aitestunion.com/
MIT License
559 stars 95 forks source link

Annotation Bounding Box possible bug #37

Open mamrez7 opened 5 years ago

mamrez7 commented 5 years ago

Thank you for your useful toolkit. It saved me lots of time and effort. Just a quick note: I checked the VOT results of different trackers from the VOT websites, their initial bounding boxes are different if you use the current code. For persistence results, I suggest the following change:

In the vot.py , the function corner2rect should return the following: np.array([x1, y1, x2-x1, y2-y1]).T instead of np.array([cx - w / 2, cy - h / 2, w, h]).T