Traffic-X / MonoLSS

Official implementation of the 3DV 2024 paper MonoLSS: Learnable Sample Selection For Monocular 3D Detection

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MonoLSS: Learnable Sample Selection For Monocular 3D Detection

PWC

🔥🔥[3DV 2024] The official implementation of the paper "MonoLSS: Learnable Sample Selection For Monocular 3D Detection"

🔥🔥|Paper | MonoLSS知乎解读 | MonoLSS微信解读

Abstract

In the field of autonomous driving, monocular 3D detection is a critical task which estimates 3D properties (depth, dimension, and orientation) of objects in a single RGB image. Previous works have used features in a heuristic way to learn 3D properties, without considering that inappropriate features could have adverse effects. In this paper, sample selection is introduced that only suitable samples should be trained to regress the 3D properties. To select samples adaptively, we propose a Learnable Sample Selection (LSS) module, which is based on Gumbel-Softmax and a relative-distance sample divider. The LSS module works under a warm-up strategy leading to an improvement in training stability. Additionally, since the LSS module dedicated to 3D property sample selection relies on object-level features, we further develop a data augmentation method named MixUp3D to enrich 3D property samples which conforms to imaging principles without introducing ambiguity. As two orthogonal methods, the LSS module and MixUp3D can be utilized independently or in conjunction. Sufficient experiments have shown that their combined use can lead to synergistic effects, yielding improvements that transcend the mere sum of their individual applications. Leveraging the LSS module and the MixUp3D, without any extra data, our method named MonoLSS ranks 1st in all three categories (Car, Cyclist, and Pedestrian) on KITTI 3D object detection benchmark, and achieves competitive results on both the Waymo dataset and KITTI-nuScenes cross-dataset evaluation. The code is included in the supplementary material and will be released to facilitate related academic and industrial studies.

Main results

Installation

Download the KITTI dataset from KITTI website

Install the following environments:

python 3.7
torch 1.3.1
torchvision 0.4.2

Eval

Download the checkpoint from here

python tools/train_val.py -t

Train

python tools/train_val.py

citation

@misc{li2023monolss,
      title={MonoLSS: Learnable Sample Selection For Monocular 3D Detection}, 
      author={Zhenjia Li and Jinrang Jia and Yifeng Shi},
      year={2023},
      eprint={2312.14474},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}

Acknowledgements

This respository is mainly based on GUPNET and DID-M3d

About

Official implementation of the 3DV 2024 paper MonoLSS: Learnable Sample Selection For Monocular 3D Detection


Languages

Language:Python 100.0%