fudan-zvg / NeRF-LiDAR

[AAAI 2024] NeRF-LiDAR: Generating Realistic LiDAR Point Clouds with Neural Radiance Fields

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NeRF-LiDAR: Generating Realistic LiDAR Point Clouds with Neural Radiance Fields

NeRF-LiDAR: Generating Realistic LiDAR Point Clouds with Neural Radiance Fields,
Junge Zhang, Feihu Zhang, Shaochen Kuang, Li Zhang
AAAI 2024

Official implementation for NeRF-LiDAR: Generating Realistic LiDAR Point Clouds with Neural Radiance Fields
Labelling LiDAR point clouds for training autonomous driving is extremely expensive and difficult. LiDAR simulation aims at generating realistic LiDAR data with labels for training and verifying self-driving algorithms more efficiently. Recently, Neural Radiance Fields (NeRF) have been proposed for novel view synthesis using implicit reconstruction of 3D scenes. Inspired by this, we present NeRF-LIDAR, a novel LiDAR simulation method that leverages real-world information to generate realistic LIDAR point clouds. Different from existing LiDAR simulators, we use real images and point cloud data collected by self-driving cars to learn the 3D scene representation, point cloud generation and label rendering. We verify the effectiveness of our NeRF-LiDAR by training different 3D segmentation models on the generated LiDAR point clouds. It reveals that the trained models are able to achieve similar accuracy when compared with the same model trained on the real LiDAR data. Besides, the generated data is capable of boosting the accuracy through pre-training which helps reduce the requirements of the real labeled data.

🛠️ Pipeline


🏙 Results

Sensor fusion

NeRF-LiDAR can also render high-quality RGB novel views along the the LiDAR. We simulate a 4 cameras and one LiDAR sensor configuration that is different from the neScenes configuration in the training dataset.


Simulation

Our NeRF-LiDAR can generate realistic point clouds that is nearly the same as the real LiDAR point clouds.

Scripts

  1. Data preprocessing
Coming soon.
  1. NeRF Reconstruction
DATA_ROOT='...' # path of data source
#training
./scripts/run/train_nusc.sh 4 version0 0213_front nuscenes_single.gin

#rendering
./scripts/run/render_video_nusc.sh 4 version0 0213_front nuscenes_single.gin

  1. Ray drop learning
#training
EXP=$1
SRC=$2
python src/transfer_lidar_data.py --expname $EXP --ray_drop $SRC --vgg --vgg_weights 0.2 --mix_train --batch_size 8 --roll

TODO

  • Code release.
  • Scripts for data preprocessing.
  • Scripts for visualization.

BibTex

@inproceedings{zhang2023nerf,
  title={NeRF-LiDAR: Generating Realistic LiDAR Point Clouds with Neural Radiance Fields},
  author={Zhang, Junge and Zhang, Feihu and Kuang, Shaochen and Zhang, Li},
  booktitle={AAAI Conference on Artificial Intelligence (AAAI)},
  year={2024}
}

About

[AAAI 2024] NeRF-LiDAR: Generating Realistic LiDAR Point Clouds with Neural Radiance Fields


Languages

Language:Python 96.0%Language:Cuda 3.4%Language:Shell 0.4%Language:C 0.2%Language:C++ 0.0%