Can We Remove the Ground? Obstacle-aware Point Cloud Compression for Remote Object Detection

Pengxi Zeng,Alberto Presta,Jonah Reinis,Dinesh Bharadia,Hang Qiu,Pamela Cosman
2024-10-01
Abstract:Efficient point cloud (PC) compression is crucial for streaming applications, such as augmented reality and cooperative perception. Classic PC compression techniques encode all the points in a frame. Tailoring compression towards perception tasks at the receiver side, we ask the question, "Can we remove the ground points during transmission without sacrificing the detection performance?" Our study reveals a strong dependency on the ground from state-of-the-art (SOTA) 3D object detection models, especially on those points below and around the object. In this work, we propose a lightweight obstacle-aware Pillar-based Ground Removal (PGR) algorithm. PGR filters out ground points that do not provide context to object recognition, significantly improving compression ratio without sacrificing the receiver side perception performance. Not using heavy object detection or semantic segmentation models, PGR is light-weight, highly parallelizable, and effective. Our evaluations on KITTI and Waymo Open Dataset show that SOTA detection models work equally well with PGR removing 20-30% of the points, with a speeding of 86 FPS.
Computer Vision and Pattern Recognition,Robotics
What problem does this paper attempt to address?
### What problem does this paper attempt to solve? This paper aims to explore and solve a key problem in point - cloud compression: **Can ground points be removed during transmission without sacrificing the performance of remote object detection?** Specifically, the authors propose a lightweight and efficient obstacle - aware point - cloud compression algorithm (Pillar - based Ground Removal, PGR) to significantly improve the compression ratio without affecting the performance of downstream computer vision tasks. #### Background and Motivation 1. **The importance of efficient point - cloud compression**: - Point - cloud (PC) compression is crucial for streaming media applications (such as augmented reality, collaborative perception, etc.). - Classical point - cloud compression techniques usually encode all points in a frame, which results in a large amount of data and transmission costs. 2. **Limitations of existing methods**: - Existing compression methods can reduce the amount of data, but may significantly degrade the performance of machine vision models. - Using complex object detection or semantic segmentation models for pre - processing can preserve some information, but increases latency and is not suitable for real - time applications. 3. **Research questions**: - Can the amount of data be reduced by selectively removing ground points without affecting the performance of object detection? - How to design a lightweight, efficient algorithm that can significantly improve the compression ratio without having a negative impact on downstream tasks? #### Proposed Solution - **PGR algorithm**: - **Pillar removal**: By analyzing the height differences and neighborhood relationships of each pillar, identify and remove points that may belong to the ground. - **Pillar restoration**: Restore the ground points near objects to ensure that the accuracy of object detection is not affected. #### Experimental Verification - **Experimental results**: - Experiments on the KITTI and Waymo Open Dataset show that PGR can maintain detection performance comparable to the original point cloud when 20 - 30% of the points are removed. - The PGR algorithm can significantly improve the compression ratio and has high parallelism and real - time performance (86 FPS). #### Main Contributions 1. **Feasibility study**: It is proved that efficient compression can be achieved without significantly affecting the detection accuracy by carefully selecting the removed ground points. 2. **Experimental verification**: Demonstrates the value of retaining some ground points near objects. 3. **Algorithm design**: Proposes a lightweight, highly parallel PGR algorithm that can effectively remove irrelevant ground points without relying on complex object detection models. ### Summary By proposing the PGR algorithm, this paper successfully solves the problem of how to efficiently compress point - cloud data without sacrificing the performance of object detection. This result provides new ideas and technical means for future point - cloud compression and remote object detection.