huanglianghua / GlobalTrack

Official PyTorch implementation of "GlobalTrack: A Simple and Strong Baseline for Long-term Tracking" @ AAAI2020.
244 stars 27 forks source link

COCO 、LaSOT、GOT10K preprocess #13

Closed cifar10 closed 4 years ago

cifar10 commented 4 years ago

Thank you for the author's code. Do we need to preprocess the coco, LaSOT, GOT10K data when reproducing the code ourselves, or just put it in the corresponding folder?

huanglianghua commented 4 years ago

Hi, you don't need to preprocess the data. Just download and extract them, and specify the paths in the code.

For example, the extract dataset structure would be like:

- ./data
  - GOT-10k
    - train
    - val
    - test
  - LaSOTBenchmark
  - coco
    - train2017
    - val2017
    - annotations
cifar10 commented 4 years ago

Get it ,thank you very much