phil-bergmann / tracking_wo_bnw

Implementation of "Tracking without bells and whistles” and the multi-object tracking "Tracktor"

Home Page:https://arxiv.org/abs/1903.05625

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wrong link to MOT17Det and a wrong definition in yaml file

NormanBeta opened this issue · comments

commented

In the README.md, the link to MOT17Det is https://motchallenge.net/data/MOT17Det.zip instead of https://motchallenge.net/data/MOT17.zip.

In ./experiments/cfgs/tracktor.yaml and ./output/tracktor/MOT17/Tracktor++/sacred_config.yaml, the definition of warp_mode is MOTION_EUCLIDEAN/MOTION_AFFINE, but it makes an error about NameError: name 'MOTION_EUCLIDEAN' is not defined, when I run python experiments/scripts/test_tracktor.py. After setting to cv2.MOTION_EUCLIDEAN, it works.

THank you for pointing out the wrong link in our README.md. However, the test_tracktor.py script should work with the warp_mode= MOTION_EUCLIDEAN without the cv2.. We changed this lately and maybe you did not update your code? Please check if your code calls the following line:

self.warp_mode = getattr(cv2, tracker_cfg['warp_mode'])

Can we close this issue?