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]).Tinstead ofnp.array([cx - w / 2, cy - h / 2, w, h]).T
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 ofnp.array([cx - w / 2, cy - h / 2, w, h]).T