yangkang779 / 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

Tracking without bells and whistles

This repository provides the implementation of our paper Tracking without bells and whistles (Philipp Bergmann, Tim Meinhardt, Laura Leal-Taixe) [https://arxiv.org/abs/1903.05625]. All results presented in our work were produced with this code.

In addition to our supplementary document, we provide an illustrative web-video-collection. The collection includes examplary Tracktor++ tracking results and multiple video examples to accompany our analysis of state-of-the-art tracking methods.

Visualization of Tracktor

Installation

  1. Clone and enter this repository:
git clone --recurse-submodules https://github.com/phil-bergmann/tracking_wo_bnw
cd tracking_wo_bnw
  1. Install packages for Python 3.6 in virtualenv:

    1. pip3 install -r requirements.txt
    2. Faster R-CNN + FPN: pip3 install -e src/fpn
    3. Faster R-CNN: pip3 install -e src/frcnn
    4. Tracktor: pip3 install -e .
    5. PyTorch 0.3.1 for CUDA 9.0: pip install https://download.pytorch.org/whl/cu90/torch-0.3.1-cp36-cp36m-linux_x86_64.whl
  2. Compile Faster R-CNN + FPN and Faster R-CNN:

    1. Make sure the nvcc compiler with CUDA 9.0 is working and all CUDA paths are set (in particular export CPATH=/usr/local/cuda-9.0/include).
    2. Compile with: sh src/fpn/fpn/make.sh
    3. Compile with: sh src/frcnn/frcnn/make.sh
    4. If compilation was not successful, check README.md and issues of official Faster-RCNN repository for help.
  3. MOTChallenge data:

    1. Download MOT17Det, MOT16Labels, 2DMOT2015, MOT16-det-dpm-raw and MOT17Labels and place them in the data folder. As the images are the same for MOT17Det, MOT17 and MOT16 we only need one set of images for all three benchmarks.
    2. Unzip all the data by executing:
    unzip -d MOT17Det MOT17Det.zip
    unzip -d MOT16Labels MOT16Labels.zip
    unzip -d 2DMOT2015 2DMOT2015.zip
    unzip -d MOT16-det-dpm-raw MOT16-det-dpm-raw.zip
    unzip -d MOT17Labels MOT17Labels.zip
    
  4. Download object detector and re-identifiaction Siamese network weights and MOTChallenge result files for ICCV 2019:

    1. Download zip file from here.
    2. Extract in output directory.

Evaluate Tracktor++

In order to configure, organize, log and reproduce our computational experiments we structured our code with the Sacred framework. For a detailed explanation of the Sacred interface please read its documentation.

  1. Our Tracktor can be configured by changing the corresponding experiments/cfgs/tracktor.yaml config file. The default configuration runs Tracktor++ with the FPN object detector as described in the paper.

  2. Run Tracktor by executing:

python experiments/scripts/test_tracktor.py
  1. The results are logged in the corresponding output directory. To evaluate the results download and run the official MOTChallenge devkit.

Train and test object detector (Faster-RCNN + FPN)

We pretrained the object detector on PASCAL VOC and did an extensive hyperparameter cross-validation. The resulting training command is:

python trainval_net.py voc_init_iccv19 --dataset mot_2017_train --net res101 --bs 2 --nw 4 --epochs 38 --save_dir weights --cuda --use_tfboard True --lr_decay_step 20 --pre_checkpoint weights/res101/pascal_voc_0712/v2/fpn_1_12.pth --pre_file weights/res101/pascal_voc_0712/v2/config.yaml

Test the provided object detector by executing:

python experiments/scripts/test_fpn.py voc_init_iccv19 --cuda --net res101 --dataset mot_2017_train --imdbval_name mot_2017_train --checkepoch 27

Training the re-identifaction Siamese network

  1. The training config file is located at experiments/cfgs/siamese.yaml.

  2. Start training by executing:

python experiments/scripts/train_siamese.py

About

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

https://arxiv.org/abs/1903.05625

License:GNU General Public License v3.0


Languages

Language:Python 100.0%