Home

Awesome

3D Siamese Voxel-to-BEV Tracker for Sparse Point Clouds

Introduction

This repository is released for V2B in our NeurIPS 2021 paper (poster). Here we include our V2B model (PyTorch) and code for data preparation, training and testing on KITTI tracking dataset. We also provide the conversion code for the nuScenes data set, which is modified on the basis of the official code from nuScenes to KITTI.

Preliminary

    conda install pytorch==1.4.0 torchvision==0.5.0 cudatoolkit=10.0
    pip install -r requirements.txt
   cd lib/pointops && python setup.py install && cd ../../

Evaluation

Train a new model on KITTI or nuScenes data:

python train_tracking.py --which_dataset=<dataset type> --data_dir=<data path> 

Test a new model on KITTI or nuScenes data:

python test_tracking.py --which_dataset=<dataset type> --data_dir=<data path> --model_dir=<model output folder path> --model=<model name>

Please refer to the code for setting of other optional arguments, including data split, training and testing parameters, etc.

ToDO

- Provide pretrained models and visualization codes
- Results on the Waymo dataset.

Citation

If you find the code or trained models useful, please consider citing:

@inproceedings{hui2021v2b,
  title={3D Siamese Voxel-to-BEV Tracker for Sparse Point Clouds},
  author={Hui, Le and Wang, Lingpeng and Cheng, Mingmei and Xie, Jin and Yang, Jian},
  booktitle={NeurIPS},
  year={2021}
}

Acknowledgements

Thank Qi for his implementation of P2B.