Towards Real-Time and Adaptable LiDAR Scene Completion
让自动驾驶汽车激光雷达的盲区在0.1秒内被补全
自动驾驶车上的激光雷达在物体被遮挡或距离较远时只能采集到稀疏且有缺口的点云。RapidLiDAR不再像以往方法那样用随机噪声或固定幅度的扰动来填补缺口,而是直接从数据中学习该把点挪到哪里,从而更好地覆盖大片遮挡区域。在SemanticKITTI和KITTI-360上的实验显示,该方法在补全质量上与现有最好方法相当,同时0.1秒即可完成一整个场景,比此前最快的方法快2.3倍。
他们做了什么
- 提出RapidLiDAR,输入稀疏激光雷达点云,通过一次前向传播直接输出补全后的密集三维场景。
- 设计自适应初始化模块,为每个输入点预测应该移动的方向和距离,在遮挡或稀疏区域让点移动得更远,在已经密集的区域只做小幅调整。
- 增加多尺度重建模块,通过查询多个分辨率的三维体素特征和二维鸟瞰图(BEV)特征来进一步微调点的位置,而无需搜索点的邻域。
- 用基于体素和BEV的特征提取替代最远点采样、k近邻搜索等逐点邻域搜索操作,使方法更快,并能天然适应不同的输入分辨率。
- 在SemanticKITTI和KITTI-360上,补全质量与现有最好方法相当,同时0.1秒完成一个场景,恰好匹配车载激光雷达每秒10次的采集频率。
![Figure 1: Initialization matters. Top row: each method’s initialization; bottom row: the corresponding refined output. The highlighted box marks a large unobserved region. (a) LiDiff [19] starts from Gaussian noise that carries no information about the scene; (b) LiNeXt [6] perturbs the input with a fixed noise variance, so its points stay near the observed surface and never reach across the gap; (c) Our adaptive module learns data-dependent displacements that populate the region from the surrounding geometry, and this coverage is preserved in both the coarse initialization and the final refined result.](https://media.metallab.ai/papers/2608.16490/f0.png)
| SemanticKITTI | KITTI-360 | |||||
|---|---|---|---|---|---|---|
| Method | CD ↓ | JSD 3D ↓ | JSD BEV ↓ | CD ↓ | JSD 3D ↓ | JSD BEV ↓ |
| LMSCNet | 0.641 | – | 0.431 | 0.979 | – | 0.496 |
| LODE | 1.029 | – | 0.451 | 1.565 | – | 0.483 |
| MID | 0.503 | – | 0.470 | 0.637 | – | 0.476 |
| PVD | 1.256 | – | 0.498 | – | – | – |
| LiDiff | 0.434 | 0.564 | 0.444 | 0.564 | – | 0.459 |
| LiDPM | 0.446 | 0.532 | 0.440 | – | – | – |
| ScoreLiDAR | 0.406 | – | 0.425 | 0.472 | – | 0.444 |
| LiFlow | 0.309 | – | 0.416 | – | – | – |
| LiNeXt | 0.214 | 0.494 | 0.336 | 0.217 | 0.508 | 0.355 |
| Ours | 0.206 | 0.475 | 0.332 | 0.211 | 0.492 | 0.338 |
| LiDiff† | 0.376 | 0.573 | 0.416 | 0.517 | – | 0.446 |
| ScoreLiDAR† | 0.342 | – | 0.399 | 0.452 | – | 0.437 |
| LiDPM† | 0.376 | 0.542 | 0.403 | – | – | – |
| LiNeXt† | 0.149 | 0.481 | 0.331 | 0.149 | 0.499 | 0.339 |
| Ours† | 0.138 | 0.478 | 0.330 | 0.140 | 0.490 | 0.336 |

| Method | CD ↓ | Param (M) ↓ | Time (s) ↓ |
|---|---|---|---|
| LiDiff | 0.434 | 32.67 | 30.1 |
| ScoreLiDAR | 0.406 | 32.67 | 7.1 |
| LiNeXt | 0.214 | 1.99 | 0.23 |
| Ours | 0.206 | 11.8 | 0.10 |
| Method | CD ↓ | JSD 3D ↓ | JSD BEV ↓ |
|---|---|---|---|
| Ours | 0.206 | 0.475 | 0.332 |
| Ours w/o AIM | 0.218 | 0.488 | 0.345 |
| Ours w/o MSRM | 0.215 | 0.494 | 0.342 |

| Smax | CD ↓ |
|---|---|
| 50 | 0.2594 |
| 70 | 0.2592 |
| 100 | 0.2589 |
| η (m) | CD ↓ | Param (M) | Time (s) ↓ |
|---|---|---|---|
| 0.5 | 0.214 | 10.0 | 0.07 |
| 0.4 | 0.210 | 11.6 | 0.09 |
| 0.3 | 0.206 | 11.8 | 0.10 |
| 0.2 | 0.208 | 11.9 | 0.14 |
为什么重要
激光雷达场景补全必须实时运行才能被自动驾驶下游任务实际使用,但现有的扩散模型方法太慢,固定噪声方法又需要针对每种新传感器手动重新调参。这项工作同时缓解了这两个问题,让场景补全更接近可以真正装车使用的速度。
本文术语
- 激光雷达场景补全(LiDAR scene completion) · 把传感器没能观测到的三维场景部分推断补全出来
- 扩散模型(diffusion model) · 通过多步逐渐去噪把随机噪声变成结果的生成模型,步骤多所以速度慢
- 鸟瞰图(BEV, Bird's-Eye-View) · 从正上方俯视三维场景得到的二维网格表示
- 体素(voxel) · 把三维空间划分成的小立方体单元,相当于三维版的像素
- 倒角距离(Chamfer Distance) · 衡量两组点之间接近程度的指标,用于评估重建的准确度
论文原文摘要(英文)
LiDAR scene completion is a key component of 3D perception in autonomous driving, where the scene must be completed in real time to be usable in downstream tasks. Existing approaches typically follow an initialize-and-refine paradigm, in which a coarse initialization of the scene is first constructed, then refined into complete 3D geometry. Generative models are slower because they iteratively refine random Gaussian noise into the scene, while non-generative methods perturb the partial scene with a fixed noise scale, which limits coverage of large gaps and occluded regions and requires manual recalibration for each new sensor configuration. We present RapidLiDAR, a LiDAR scene completion method that treats the initialization itself as a learned, data-driven component. We propose an adaptive initialization module that predicts a spatially varying displacement for each partial input point, expanding the partial observations into a coarse scene initialization adapted to the local geometry, without requiring manual noise tuning. To refine this coarse initialization into a complete and coherent scene, we additionally propose a multi-scale reconstruction module that further refines point positions by querying multi-scale 3D voxel and 2D BEV feature maps constructed from the input scan. By replacing point-neighborhood operators such as farthest point sampling and k-nearest neighbor search with voxel- and BEV-based feature extraction, our architecture is faster and can handle different input resolutions by design. Experiments on SemanticKITTI and KITTI-360 show that our method achieves completion performance on par with the state of the art while completing a full scene in 0.1 seconds, which is 2.3 times faster than the fastest prior method. This matches the 10 Hz acquisition rate of typical automotive LiDAR sensors, taking a step toward real-time LiDAR scene completion.
在 arXiv 阅读最新论文
- The Lifecycle of LLM-as-a-Judge for Large-Scale Recommendation ExplanationsNetflix把给推荐理由打分的AI裁判当成需要终身照料的系统,而不是一次性搭建完就不管
- GenEx: A Graph-Based Representational Paradigm for SARS-CoV-2 Variant Detection via Codon Co-occurrence Networks把病毒基因序列变成密码子关系网络图,用来区分新冠变异株
- When Clean Signals Are Not Enough: Detecting Structural Ambiguity for Safe Wearable Stress Classification一款平均准确率93%的压力检测AI对某一个人完全失效,研究者因此做了一个在分类前先检查信号是否可信的把关系统
- Improving Natural-Language Combinatorial-Optimization Accuracy in Resource-Constrained Language Models via Formal Abstractions给小模型一门专用的排程小语言,就能让它写出真正可行的日程安排
- SESSE: Sketch, Expand, Sort, Summarize, Evaluate -- LLM-as-Judge Evaluation via Structured Decomposition让AI裁判在挑选两个回答哪个更好时,把判断依据一条条摆出来
- Bridging Search and CRM: Productionizing AI Product Research Agents for Customer Re-EngagementAI智能体追着离场用户发WhatsApp,把逛而不买的顾客拉回来
- Position: AI Leaderboards Are Underserving the Global South: A Case Study from India印度等全球南方地区其实已经有优质AI基准测试,缺的是能公正排名的独立裁判机构
- Evaluating Structured Information Extraction with Open Models in a High Risk Public Sector Application在高风险公共部门文档任务中,开源AI开箱即用有四分之三不合格
METAL LAB 最新报道
图片来源: Azhar Hussian et al., arXiv:2608.16490, cc-by-nc-sa-4.0