Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 2.75 KB

README.md

File metadata and controls

34 lines (24 loc) · 2.75 KB

3DSSD: Point-based 3D Single Stage Object Detector

Introduction

We implement 3DSSD and provide the results and checkpoints on KITTI datasets.

@inproceedings{yang20203dssd,
    author = {Zetong Yang and Yanan Sun and Shu Liu and Jiaya Jia},
    title = {3DSSD: Point-based 3D Single Stage Object Detector},
    booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
    year = {2020}
}

Experiment details on KITTI datasets

Some settings in our implementation are different from the official implementation, which bring marginal differences to the performance on KITTI datasets in our experiments. To simplify and unify the models of our implementation, we skip them in our models. These differences are listed as below:

  1. We keep the scenes without any object while the official code skips these scenes in training. In the official implementation, only 3229 and 3394 samples are used as training and validation sets, respectively. In our implementation, we keep using 3712 and 3769 samples as training and validation sets, respectively, as those used for all the other models in our implementation on KITTI datasets.
  2. We do not modify the decay of batch normalization during training.
  3. While using DataBaseSampler for data augmentation, the official code uses road planes as reference to place the sampled objects while we do not.
  4. We perform detection using LIDAR coordinates while the official code uses camera coordinates.

Results

KITTI

Backbone Class Lr schd Mem (GB) Inf time (fps) mAP Download
PointNet2SAMSG Car 72e 4.7 78.69(81.27)1 model | log

[1]: We report two different 3D object detection performance here. 78.69mAP is evaluated by our evaluation code and 81.27mAP is evaluated by the official development kit (so as that used in the paper and official code of 3DSSD ). We found that the commonly used Python implementation of rotate_iou which is used in our KITTI dataset evaluation, is different from the official implemention in KITTI benchmark.