Sparse-to-Dense LiDAR Point Generation by LiDAR-Camera Fusion for 3D Object Detection

Minseung Lee,Seokha Moon,Seung Joon Lee,Jinkyu Kim
2024-09-25
Abstract:Accurately detecting objects at long distances remains a critical challenge in 3D object detection when relying solely on LiDAR sensors due to the inherent limitations of data sparsity. To address this issue, we propose the LiDAR-Camera Augmentation Network (LCANet), a novel framework that reconstructs LiDAR point cloud data by fusing 2D image features, which contain rich semantic information, generating additional points to improve detection accuracy. LCANet fuses data from LiDAR sensors and cameras by projecting image features into the 3D space, integrating semantic information into the point cloud data. This fused data is then encoded to produce 3D features that contain both semantic and spatial information, which are further refined to reconstruct final points before bounding box prediction. This fusion effectively compensates for LiDAR's weakness in detecting objects at long distances, which are often represented by sparse points. Additionally, due to the sparsity of many objects in the original dataset, which makes effective supervision for point generation challenging, we employ a point cloud completion network to create a complete point cloud dataset that supervises the generation of dense point clouds in our network. Extensive experiments on the KITTI and Waymo datasets demonstrate that LCANet significantly outperforms existing models, particularly in detecting sparse and distant objects.
Computer Vision and Pattern Recognition,Artificial Intelligence
What problem does this paper attempt to address?
### Problems Addressed by the Paper The paper aims to address the issue of insufficient detection accuracy when using only LiDAR sensors for 3D object detection over long distances due to data sparsity. Specifically, the 3D point cloud data generated by LiDAR sensors is usually sparse at long distances, making it difficult to recognize distant objects, thereby affecting the performance of 3D detection tasks. To tackle this challenge, the authors propose the LiDAR-Camera Augmentation Network (LCANet), a novel framework that reconstructs LiDAR point cloud data by fusing 2D image features to generate additional points and improve detection accuracy. LCANet effectively compensates for the weaknesses of LiDAR in detecting distant objects by projecting image features into 3D space and integrating semantic information into the point cloud data. Additionally, to address the sparsity of many objects in the original dataset, the authors use a point cloud completion network to create a complete point cloud dataset for supervising the network to generate dense point clouds. ### Main Contributions 1. **Proposing LCANet**: By fusing 2D image features with 3D LiDAR data to generate additional points, it improves the detection performance of distant and sparse objects. 2. **Introducing a New Feature Fusion Paradigm**: By combining image and LiDAR features to generate semantically rich points, it overcomes the inherent limitations of LiDAR. 3. **Experimental Validation**: Extensive experiments on the KITTI and Waymo datasets show that LCANet significantly outperforms existing point generation models in detecting distant objects. ### Solution The main components of LCANet include: 1. **Semantic Points Encoding (SPE)**: By projecting 3D points onto images and merging the corresponding image features with 3D point features, it enriches the semantic information of each point. 2. **Cross-modal Feature Fusion (CMFF)**: By aggregating multi-modal features through 3D RoI grid pooling, 2D RoI grid pooling, and RoI Align techniques, it generates initial bounding box predictions. 3. **RoI Points Generation**: Using a Transformer encoder to generate additional points and capture long-distance dependencies through positional encoding. 4. **Detection Head**: Extracting comprehensive features through a point encoder to finally generate bounding box predictions and confidence scores. ### Experimental Results The experimental results show that LCANet significantly outperforms existing point generation models on the KITTI and Waymo datasets, especially in detecting distant and sparse objects. These results validate the effectiveness and robustness of LCANet. ### Conclusion The proposed LCANet effectively addresses the data sparsity issue in LiDAR for distant object detection by fusing 2D image features and 3D point cloud data, thereby improving detection accuracy. This approach holds promise for significant applications in fields such as autonomous driving and robotics.