SysCV / qdtrack

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

The reference image and key image are exactly the same #118

Open HuseyinVisea opened 2 years ago

HuseyinVisea commented 2 years ago

In the article (QDTrack), the difference between the key image and the reference image is indicated by the image below.

Screenshot 2022-09-05 113254

However, when debugging the training code, I saw that the reference image metadata and key image metadata returned by the data loader are exactly the same.

Screenshot 2022-09-05 103058

Do I need to change a parameter before starting training or is this an error in the code? I would be glad if you inform me.

OceanPang commented 2 years ago

Hi @Hcayirli, we use images from detection set and tracking set for joint tracking. It is possible to use the same image as reference for training, especially for those images in the detection set.

HuseyinVisea commented 2 years ago

Thanks for your quick response.

So how can we change this? Is there a parameter I can change in the code?

OceanPang commented 2 years ago

Here.

HuseyinVisea commented 2 years ago

I am getting the following NotImplementedError.

Screenshot 2022-09-05 154245

How can I implement it to load a different image?