← Back to Index
Daily Autonomous Driving Research Digest

AutoDrive Papers

2026-07-28
19
Papers
8
Topics
19
Translated

感知

5
感知 / 1 / 2607.22698

FogDrive: A Multi-Modal Synthetic Driving Dataset for Perception under Graded Fog

FogDrive:一种用于分级雾霾下感知的多模态合成驾驶数据集
Vansh Panwar
cs.CV
Abstract
Perception under adverse weather remains a critical bottleneck for reliable autonomous driving, yet existing benchmarks lack the systematic multi-modal alignments needed to evaluate robust sensor fusion. Real-world weather datasets suffer from uncontrolled collection and single-level, uncalibrated conditions, while synthetic alternatives either target camera-only restoration or lack the paired clean-and-foggy structure needed to benchmark "defog-then-detect" pipelines. We present FogDrive, a rigorously calibrated, multi-modal autonomous-driving dataset bridging data-centric engineering and robust machine learning. Built with the CARLA simulator, FogDrive contains 660 scenes (~133k fully annotated frames, 50:50 day/night) across four synchronized cameras (RGB, depth, semantic segmentation), a LiDAR and semantic-LiDAR pair, and front radar. Physically consistent fog is modeled independently on camera channels (Koschmieder model) and LiDAR channels (Beer-Lambert law) at three calibrated visibility densities (160m, 100m, 50m). Every scene ships in four matched variants (clean plus three graded fog levels) with cross-calibrated 2D and 3D bounding boxes. A semantic-segmentation-based quality audit over 8k images validates annotations at 95.1% precision and over 99% recall for vehicles within 40m. We establish baseline benchmarks with state-of-the-art architectures (TransFusion, BEVFusion, YOLOv8-m) across two paradigms: 3D multi-modal fusion and 2D image restoration. These yield critical data-centric insights: mixing multi-density fog during training tightens 3D bounding-box geometry without added data-scaling cost, while in 2D pipelines image-quality metrics (PSNR, SSIM) prove poor predictors of downstream detection performance. FogDrive will be fully open-sourced alongside our data-generation framework to accelerate robust, multi-modal research.
Chinese Translation
在恶劣天气条件下的感知仍然是可靠自主驾驶的一个关键瓶颈,然而现有基准缺乏评估稳健传感器融合所需的系统性多模态对齐。现实世界的天气数据集受到不受控的收集和单一层次、未校准条件的影响,而合成替代品要么仅针对相机恢复,要么缺乏用于基准“去雾后检测”的配对清晰与雾霾结构。我们提出了FogDrive,这是一个经过严格校准的多模态自主驾驶数据集,旨在连接数据驱动工程与稳健机器学习。FogDrive基于CARLA模拟器构建,包含660个场景(约13.3万帧完全标注,白天/夜晚各占50%),涵盖四个同步摄像头(RGB、深度、语义分割)、一个激光雷达和一个语义激光雷达对,以及前向雷达。物理一致的雾霾在摄像头通道(Koschmieder模型)和激光雷达通道(Beer-Lambert定律)上独立建模,具有三种校准的能见度密度(160米、100米、50米)。每个场景提供四个匹配变体(清晰加上三个分级雾霾水平),并配有交叉校准的2D和3D边界框。基于语义分割的质量审计覆盖8000张图像,验证了在40米内车辆标注的95.1%精度和超过99%的召回率。我们在两个范式下使用最先进的架构(TransFusion、BEVFusion、YOLOv8-m)建立基准基线:3D多模态融合和2D图像恢复。这些结果提供了关键的数据驱动见解:在训练过程中混合多密度雾霾可以在不增加数据缩放成本的情况下收紧3D边界框几何,而在2D管道中,图像质量指标(PSNR、SSIM)被证明是下游检测性能的差劣预测因子。FogDrive将与我们的数据生成框架一起完全开源,以加速稳健的多模态研究。
感知 / 2 / 2607.22714

Real-Time Semantic Segmentation with Optimized RetinaNet Architectures for Embedded Automotive Systems

针对嵌入式汽车系统的优化 RetinaNet 架构的实时语义分割
Sai Sidharth D
cs.CV · cs.AI
Abstract
Real-time perception is a foundational requirement for advanced driver assistance systems (ADAS) and autonomous vehicles, yet embedded automotive platforms impose severe constraints on compute, memory, and power. This paper presents an optimized semantic segmentation architecture derived from the RetinaNet detection framework, adapted for dense pixel-wise prediction and tailored for deployment on resource-constrained embedded hardware. The proposed architecture, termed Opt-RetinaSeg, replaces the standard ResNet-50 backbone with a hybrid lightweight feature extractor, restructures the Feature Pyramid Network (FPN) to reduce redundant multi-scale computation, and introduces a compact segmentation head guided by focal-loss-inspired class balancing to address the severe foreground-background imbalance common in road scenes. We further apply a three-stage optimization pipeline consisting of structured channel pruning, post-training INT8 quantization, and knowledge distillation from a high-capacity teacher network. Evaluated on the Cityscapes and BDD100K datasets and deployed on an NVIDIA Jetson Xavier NX and a Qualcomm QCS610 automotive SoC, the proposed model achieves 73.9% mIoU at 70.4 FPS, representing a 7.4x inference speedup and a 4x reduction in model size relative to the ResNet-50 baseline, with less than 3% accuracy degradation. These results indicate that RetinaNet-derived architectures, when systematically optimized, are viable candidates for real-time semantic segmentation in embedded automotive perception pipelines
Chinese Translation
实时感知是高级驾驶辅助系统(ADAS)和自动驾驶车辆的基础要求,但嵌入式汽车平台对计算、内存和功耗施加了严格的限制。本文提出了一种基于 RetinaNet 检测框架的优化语义分割架构,适用于密集的像素级预测,并针对资源受限的嵌入式硬件进行了调整。所提出的架构称为 Opt-RetinaSeg,采用混合轻量级特征提取器替代标准的 ResNet-50 主干,重构特征金字塔网络(FPN)以减少冗余的多尺度计算,并引入一个紧凑的分割头,通过受焦点损失启发的类别平衡来解决道路场景中常见的严重前景-背景不平衡。我们进一步应用了一个三阶段优化流程,包括结构化通道剪枝、后训练 INT8 量化和从高容量教师网络的知识蒸馏。在 Cityscapes 和 BDD100K 数据集上进行评估,并在 NVIDIA Jetson Xavier NX 和 Qualcomm QCS610 汽车 SoC 上部署,所提出的模型在 70.4 FPS 下实现了 73.9% 的 mIoU,相较于 ResNet-50 基线实现了 7.4 倍的推理加速和 4 倍的模型尺寸缩减,且准确率下降不足 3%。这些结果表明,经过系统优化的基于 RetinaNet 的架构是嵌入式汽车感知管道中实时语义分割的可行候选者。
感知 / 3 / 2607.23962

Development of Vision-Language Model-based GNSS Spoofing Detection for Autonomous Vehicle Navigation

基于视觉-语言模型的全球导航卫星系统欺骗检测在自主车辆导航中的应用研究
Mohammed Aldeen, Muhammad Sami Irfan, Sagar Dasgupta, Long Cheng, Mizanur Rahman, Mashrur Chowdhury
cs.CV · cs.CR
Abstract
Autonomous vehicles (AVs) depend on Global Navigation Satellite Systems (GNSS) for localization and navigation, making them vulnerable to spoofing attacks that can covertly redirect vehicles or induce unsafe maneuvers. In this paper, we develop the first Vision-Language Model (VLM)-based framework for GNSS spoofing detection for autonomous vehicles by fusing front-camera visual data with in-vehicle sensor readings (e.g., speed, acceleration, yaw rate) against GNSS-derived maneuvers. Our approach introduces a three-stage fine-tuning process that first grounds visual cues, and then calibrates sensor data within a shared semantic space to detect discrepancies between predicted and GNSS-derived maneuvers across three attack scenarios. We also generated an independent real-world dataset by driving an instrumented vehicle on public roads in Tuscaloosa, Alabama, equipped with time-synchronized GNSS, IMU, and camera logs to validate cross-regional generalization of our fine-tuned model on unseen data from training data. On this dataset, we then generated intelligent spoofing attacks, including trajectory mirroring with road-network snapping for wrong-turn attacks, position freezing for overshoot scenarios, and drift generation for stop attacks. On this validation dataset, the zero-shot VLMs baseline F1-score ranges from 23% to 32%, whereas our fine-tuned model achieves an F1-score ranging from 94% to 95%. Results show that our VLM-based approach correctly classified every wrong-turn and stop attacks, and attains 88%-93% accuracy for overshoot attacks. Furthermore, we introduce an adaptive inference policy that reduces VLM invocations to 14% (~86% computational reduction) and yields 65ms-73ms per 4s window. These results point to a practical, on-road layer of defense that complements signal-level integrity checks with the use of VLMs.
Chinese Translation
自主车辆(AVs)依赖全球导航卫星系统(GNSS)进行定位和导航,这使其易受欺骗攻击的影响,这些攻击可以秘密地重定向车辆或引发不安全的操作。在本文中,我们开发了首个基于视觉-语言模型(VLM)的GNSS欺骗检测框架,通过将前置摄像头的视觉数据与车载传感器读数(例如速度、加速度、偏航率)结合,针对GNSS派生的操作进行检测。我们的方法引入了一个三阶段的微调过程,首先将视觉线索与实际情况相结合,然后在共享的语义空间内校准传感器数据,以检测在三种攻击场景下预测的操作与GNSS派生操作之间的差异。我们还通过在阿拉巴马州塔斯卡卢萨的公共道路上驾驶一辆配备了时间同步的GNSS、IMU和摄像头日志的仪器化车辆,生成了一个独立的真实世界数据集,以验证我们微调模型在未见数据上的跨区域泛化能力。在该数据集上,我们生成了智能欺骗攻击,包括通过道路网络快照进行错误转弯攻击的轨迹镜像、用于超速场景的位置冻结,以及用于停车攻击的漂移生成。在该验证数据集上,零-shot VLM基线的F1分数范围为23%到32%,而我们的微调模型则达到了94%到95%的F1分数。结果表明,我们基于VLM的方法正确分类了每一次错误转弯和停车攻击,并在超速攻击中达到了88%-93%的准确率。此外,我们引入了一种自适应推理策略,将VLM调用减少到14%(约86%的计算减少),并在每4秒的窗口内实现了65毫秒到73毫秒的响应时间。这些结果表明,基于VLM的方法为信号级完整性检查提供了一个实用的、路面防御层。
感知 / 4 / 2607.24224

MATS: A novel multi-modality multi-task learning framework for 3D perception in autonomous driving

MATS:一种用于自动驾驶3D感知的新型多模态多任务学习框架
Junchen Huo, Wanming Hao, Song Wang, Enqing Chen, Shouyi Yang, Guanghui Wang
cs.CV
Abstract
Multi-modality data from different sensors provides rich complementary information for 3D perception, becoming an essential component in reliable autonomous driving systems. Current research typically designs intricate and complex fusion strategies to integrate information from multimodal data on a unified bird's-eye-view (BEV) feature map for the joint learning of multiple perception tasks. However, such a single feature map hardly carries sufficient information to simultaneously meet the requirements of various perception tasks, leading to a very limited perception performance. To mitigate this limitation, this paper proposes MATS, a novel multi-modality multi-task learning approach with modality-adaptive BEV fusion and task-specific Mixture-of-Experts (MoE) for 3D perception. Specifically, a simple modality-adaptive BEV fusion module is designed to adaptively recalibrate the BEV features by modeling the global cross-modality dependencies, generating diverse BEV feature maps for various perception tasks. For joint multi-task learning, this paper proposes a task-specific MoE module to decouple the tasks and enable the network to automatically choose the appropriate BEV feature candidates for each specific task. To validate the effectiveness of the proposed approach, we conduct extensive experiments on the large-scale benchmark nuScenes. With the camera- and LiDAR-modality input data, the proposed approach outperforms the state-of-the-art (SOTA) by a significant margin. Furthermore, the experimental results on the single tasks show that the proposed approach significantly outperforms the baselines. The code and trained models will be available upon publication.
Chinese Translation
来自不同传感器的多模态数据提供了丰富的互补信息,对于3D感知而言,成为可靠自动驾驶系统的一个重要组成部分。目前的研究通常设计复杂的融合策略,将多模态数据的信息整合到统一的鸟瞰图(BEV)特征图上,以便共同学习多个感知任务。然而,这样的单一特征图往往难以同时满足各种感知任务的需求,导致感知性能非常有限。为了解决这一限制,本文提出了MATS,一种具有模态自适应BEV融合和任务特定专家混合(Mixture-of-Experts, MoE)的新型多模态多任务学习方法,旨在实现3D感知。具体而言,设计了一个简单的模态自适应BEV融合模块,通过建模全局跨模态依赖关系,自适应地重新校准BEV特征,为各种感知任务生成多样化的BEV特征图。为了实现联合多任务学习,本文提出了一个任务特定的MoE模块,以解耦任务并使网络能够自动选择每个特定任务的适当BEV特征候选。为了验证所提方法的有效性,我们在大规模基准nuScenes上进行了广泛的实验。使用相机和激光雷达模态输入数据,所提方法在性能上显著超越了现有的最先进技术(SOTA)。此外,单任务的实验结果表明,所提方法显著优于基线。代码和训练模型将在发表时提供。
感知 / 5 / 2607.24431

InterOCF: Spatio-Temporal 2D-3D Interaction for Camera-Only 4D Occupancy Forecasting

InterOCF:用于仅依靠摄像头的4D占用预测的时空2D-3D交互
Qi Zhang, Xinquan Yu, Kaiyi Zhang, Hui Huang
cs.CV
Abstract
Camera-only 4D occupancy forecasting enables autonomous vehicles to predict future 3D semantic scenes solely from historical multi-view images, which is critical for driving safety. Even though current methods have achieved good performance, the strong spatial-temporal modeling between the input multi-view frames is still underexplored, which limits the performance of those methods in future 4D forecasting. To address this gap, we introduce a novel framework, InterOCF, for 4D occupancy forecasting that jointly models temporal dynamics in both 3D voxel-based representations and multi-view segmentation sequences, while explicitly incorporating feature interaction between the 2D and 3D branches. Our framework incorporates three core components: 1) A 3D Spatio-Temporal (3DST) module that learns volumetric dynamics from historical voxel states to predict future voxel states; 2) A 2D Spatio-Temporal (2DST) module employing an auxiliary multi-view temporal segmentation forecasting task to enhance temporal semantic dynamics; 3) A Spatio-Temporal Interaction Modeling (STIM) module that enables feature interaction between 2D and 3D representations. Experiments on the nuScenes, Lyft-Level5, and nuScenes-Occupancy datasets show that InterOCF consistently outperforms existing baseline approaches.
Chinese Translation
仅依靠摄像头的4D占用预测使得自动驾驶车辆能够仅通过历史多视角图像预测未来的3D语义场景,这对驾驶安全至关重要。尽管当前的方法已取得良好性能,但输入多视角帧之间的强时空建模仍然未得到充分探索,这限制了这些方法在未来4D预测中的表现。为了解决这一问题,我们提出了一种新颖的框架InterOCF,用于4D占用预测,该框架联合建模3D体素表示和多视角分割序列中的时间动态,同时明确地结合2D和3D分支之间的特征交互。我们的框架包含三个核心组件:1)一个3D时空(3DST)模块,从历史体素状态中学习体积动态,以预测未来的体素状态;2)一个2D时空(2DST)模块,采用辅助的多视角时间分割预测任务来增强时间语义动态;3)一个时空交互建模(STIM)模块,使得2D和3D表示之间的特征交互成为可能。在nuScenes、Lyft-Level5和nuScenes-Occupancy数据集上的实验表明,InterOCF始终优于现有的基线方法。

LiDAR/点云

2
LiDAR/点云 / 1 / 2607.23096

SHReg: Strictly Rotation-Equivariant Point Cloud Registration via Spherical Harmonics

SHReg:通过球谐函数实现严格旋转等变的点云配准
Chongjian Wang, Junjie Gao
cs.CV
Abstract
Point cloud registration critically depends on local features that are both distinctive and robust to arbitrary 3D rotations. Existing learning-based methods typically approximate rotation invariance via fragile local reference frames or extensive data augmentation, providing only empirical invariance and often degrading under unseen rotational transformations. In this paper, we propose SHReg, a strictly rotation-equivariant point cloud registration framework grounded in the representation theory of $SO(3)$. By representing local geometric features as irreducible representations of $SO(3)$, SHReg guarantees exact equivariance under arbitrary rotations without relying on local reference frames. Built upon a spherical-harmonics-based equivariant backbone, SHReg jointly learns rotation-invariant descriptors for robust correspondence matching and rotation-equivariant features that preserve fine-grained orientation information. The preserved equivariant structure enables each correspondence to directly hypothesize a rigid transformation, reducing reliance on large-scale hypothesis sampling in conventional RANSAC-based pipelines and leading to improved robustness under challenging rotational variations. Extensive experiments on 3DMatch, 3DLoMatch, and KITTI demonstrate that SHReg consistently outperforms state-of-the-art methods in registration accuracy, particularly under large rotational perturbations.
Chinese Translation
点云配准在很大程度上依赖于既具有辨识度又对任意三维旋转具有鲁棒性的局部特征。现有的基于学习的方法通常通过脆弱的局部参考框架或广泛的数据增强来近似旋转不变性,仅提供经验性的等变性,并且在未见过的旋转变换下往往会退化。本文提出了SHReg,一种基于$SO(3)$表示理论的严格旋转等变点云配准框架。通过将局部几何特征表示为$SO(3)$的不可约表示,SHReg保证在任意旋转下的精确等变性,而无需依赖局部参考框架。SHReg基于球谐函数的等变主干网络共同学习鲁棒的旋转不变描述符以实现精确的对应匹配,以及保留细粒度方向信息的旋转等变特征。保留的等变结构使得每个对应关系能够直接假设刚性变换,减少了对传统RANSAC管道中大规模假设采样的依赖,从而在具有挑战性的旋转变化下提高了鲁棒性。在3DMatch、3DLoMatch和KITTI上的大量实验表明,SHReg在配准精度上始终优于最先进的方法,特别是在大幅旋转扰动下。
LiDAR/点云 / 2 / 2607.23910

SimBEV2X: A Large-Scale Dataset and Data Generation Tool for Multi-Task Vehicle-to-Everything Cooperative Perception

SimBEV2X:用于多任务车对一切协同感知的大规模数据集和数据生成工具
Goodarz Mehr, Sepideh Gohari, Montasir Abbas, Azim Eskandarian
cs.CV · cs.LG · cs.MA · cs.RO
Abstract
Cooperative perception through vehicle-to-everything (V2X) communication can overcome the inherent physical limitations of individual autonomous vehicles, such as occlusions and limited sensor range. However, the development of robust V2X algorithms, particularly those relying on unified spatial representations like bird's-eye view (BEV) representation, is hampered by the lack of large-scale, multi-modal, multi-task datasets. Moreover, collecting and annotating a large set of synchronized, real-world multi-agent data is prohibitively expensive. This has resulted in a landscape where existing V2X datasets are notably limited in both size and scope. To overcome this, we introduce SimBEV2X, an advanced synthetic data generation tool built on the CARLA simulator. SimBEV2X automatically creates randomized driving scenarios to collect multi-modal sensor data alongside various types of ground truth including 3D bounding boxes with unique track IDs, HD map information, BEV segmentation maps, and semantic occupancy voxel grids from both vehicles and RSUs. We also present the SimBEV2X dataset, the largest V2X perception dataset to date. The dataset comprises 258 scenes, each involving up to 8 connected vehicles and up to 4 RSUs across a variety of road networks. The SimBEV2X dataset is an order of magnitude larger than existing V2X datasets and contains 102,200 frames, 588,520 lidar point clouds, more than 3 million images, over 27 million bounding boxes, and a comprehensive set of other annotations. Finally, we establish a strong baseline on the SimBEV2X dataset using CoopDet3D and propose CoBEVFusion, a novel architecture that combines CoopDet3D with fused axial attention (FAX) for context-aware multi-agent feature aggregation, resulting in superior performance. SimBEV2X, the SimBEV2X dataset, and CoBEVFusion are available at https://simbev2x.org and https://github.com/GoodarzMehr/SimBEV2X.
Chinese Translation
通过车对一切(V2X)通信实现的协同感知可以克服单个自主车辆固有的物理限制,例如遮挡和传感器范围有限。然而,开发强健的V2X算法,特别是那些依赖于统一空间表示(如鸟瞰视图(BEV)表示)的算法,受到缺乏大规模、多模态、多任务数据集的制约。此外,收集和标注大量同步的真实世界多智能体数据的成本极高。这导致现有的V2X数据集在规模和范围上都显得相当有限。为了解决这个问题,我们推出了SimBEV2X,这是一个基于CARLA模拟器的先进合成数据生成工具。SimBEV2X自动创建随机驾驶场景,以收集多模态传感器数据以及各种类型的真实数据,包括带有唯一轨迹ID的3D边界框、高精度地图信息、BEV分割图和来自车辆及路边单元(RSUs)的语义占用体素网格。我们还提出了SimBEV2X数据集,这是迄今为止最大的V2X感知数据集。该数据集包含258个场景,每个场景涉及多达8辆连接车辆和多达4个RSUs,涵盖多种道路网络。SimBEV2X数据集的规模比现有的V2X数据集大一个数量级,包含102,200帧、588,520个激光雷达点云、超过300万张图像、超过2700万个边界框以及一整套其他注释。最后,我们在SimBEV2X数据集上建立了一个强基线,使用了CoopDet3D,并提出了CoBEVFusion,这是一种将CoopDet3D与融合轴向注意力(FAX)结合的新架构,用于上下文感知的多智能体特征聚合,从而实现了卓越的性能。SimBEV2X、SimBEV2X数据集和CoBEVFusion可在https://simbev2x.org和https://github.com/GoodarzMehr/SimBEV2X获取。

深度/几何

3
深度/几何 / 1 / 2607.23755

DAP-Pose: Deep Temporal Alignment and Physics-aware Cross-modal Sensor Fusion for Robust Pose Estimation

DAP-Pose:深度时间对齐与物理感知跨模态传感器融合用于鲁棒姿态估计
Jianhan Lin, Yuchu Qin, Jiateng Yuan, Wenbo Zhang, Shuai Gao
cs.CV
Abstract
Robust and accurate pose estimation with multi-modal sensors is fundamental for autonomous vehicles and mobile robotic systems in complex environments. In this paper, we propose DAP-Pose, a unified end-to-end model for robust multi-modal pose estimation. DAP-Pose introduces a Bi-level Cross-modal Fusion (BCF) module that captures complementary semantic and geometric motion cues from visual, inertial, and GNSS measurements. To handle temporal offsets, we designed a Deep Temporal Alignment (DTA) module that explicitly aligns asynchronous streams in latent space, enabling coherent motion modeling without strict hardware synchronization. Furthermore, we incorporate physics-aware constraints via manifold geometry and GNSS-guided absolute metric scale, enforcing motion consistency and mitigating drift. Experiments upon the public KITTI benchmark dataset were conducted to evaluate the performance of DAP-Pose against existing methods. DAP-Pose achieved the state-of-the-art performance, with the lowest average translation error ($t_{rel}$) of 1.31% and rotation error ($r_{rel}$) of 0.46$^{\circ}$. Furthermore, it accurately estimates poses and maintains robust performance under severe artificially injected temporal misalignment.
Chinese Translation
在复杂环境中,使用多模态传感器进行鲁棒且准确的姿态估计对于自主车辆和移动机器人系统至关重要。本文提出了DAP-Pose,一个统一的端到端模型,用于鲁棒的多模态姿态估计。DAP-Pose引入了一个双层跨模态融合(Bi-level Cross-modal Fusion, BCF)模块,该模块从视觉、惯性和全球导航卫星系统(GNSS)测量中捕获互补的语义和几何运动线索。为了处理时间偏移,我们设计了一个深度时间对齐(Deep Temporal Alignment, DTA)模块,该模块在潜在空间中显式对齐异步流,从而实现一致的运动建模,而无需严格的硬件同步。此外,我们通过流形几何和GNSS引导的绝对度量尺度引入了物理感知约束,强制运动一致性并减轻漂移。在公共KITTI基准数据集上进行了实验,以评估DAP-Pose相对于现有方法的性能。DAP-Pose达到了最先进的性能,平均平移误差($t_{rel}$)最低为1.31%,旋转误差($r_{rel}$)为0.46$^{ ext{°}}$。此外,它能够准确估计姿态,并在严重人为注入的时间错位下保持鲁棒性能。
深度/几何 / 2 / 2607.23758

RoadVGGT: Road-Structure-Aware Feed-Forward Road Surface Reconstruction

RoadVGGT:道路结构感知前馈道路表面重建
Han Jiao, Chen Liu, Jiakai Sun, Zhanjie Zhang, Mengyuan Yang, Yimeng Li, Mofan Zhou, Kun Zhan, Lei Zhao
cs.CV
Abstract
Large-scale road surface reconstruction supports high-definition mapping, autonomous-driving perception, annotation, and simulation. Existing road-specialized optimization methods can produce high-quality road representations, but they typically require per-scene training and scene-dependent coverage design around the driving trajectory, limiting scalable reconstruction over newly collected roads. To address these limitations, we introduce RoadVGGT, a road-structure-aware feed-forward framework that reconstructs compact Gaussian road surfaces without test-time per-scene optimization. RoadVGGT uses a geometric foundation model to exploit multi-view images together with provided pose and depth observations, and predicts dense pixel-aligned Gaussian attributes through a learned Gaussian head. To make these dense predictions usable for large road surfaces, we align them into a consistent metric world coordinate system and fuse redundant Gaussians on the road-aligned XY plane through confidence-weighted grid fusion. Category-aware grouping and road--sidewalk junction protection further control fusion around vulnerable road structures. The resulting representation supports RGB and semantic bird's-eye-view maps, elevation estimation, and novel view synthesis. RoadVGGT eliminates the need for per-scene optimization in prior methods, reconstructs complete road surfaces with a compact Gaussian representation, and improves image quality, semantic mapping, and elevation accuracy. Extensive experiments demonstrate the potential of geometric foundation models for scalable feed-forward road surface reconstruction.
Chinese Translation
大规模道路表面重建支持高清地图、自动驾驶感知、标注和仿真。现有的道路专用优化方法能够生成高质量的道路表示,但通常需要针对每个场景进行训练,并围绕驾驶轨迹设计场景依赖的覆盖,这限制了对新收集道路的可扩展重建。为了解决这些限制,我们提出了RoadVGGT,一种道路结构感知的前馈框架,能够在不进行测试时每个场景优化的情况下重建紧凑的高斯道路表面。RoadVGGT利用几何基础模型,结合多视角图像以及提供的姿态和深度观测,预测通过学习的高斯头生成的密集像素对齐高斯属性。为了使这些密集预测可用于大规模道路表面,我们将其对齐到一致的度量世界坐标系,并通过基于置信度加权的网格融合在道路对齐的XY平面上融合冗余高斯。类别感知分组和道路-人行道交界保护进一步控制了脆弱道路结构周围的融合。最终生成的表示支持RGB和语义鸟瞰图、海拔估计以及新视图合成。RoadVGGT消除了先前方法中每个场景优化的需求,以紧凑的高斯表示重建完整的道路表面,并提高了图像质量、语义映射和海拔精度。大量实验表明,几何基础模型在可扩展前馈道路表面重建中的潜力。
深度/几何 / 3 / 2607.24024

A Unified Stereo Geometry Estimation Framework for Disparity and Surface Normal

一种统一的立体几何估计框架用于视差和表面法线
Qizhe Wei, Xianda Guo, Shaocong Xu, Hong Li, Runyi Yang, Hao Zhao
cs.CV
Abstract
Stereo matching and surface normal estimation are fundamental tasks in 3D vision. However, existing feed-forward stereo methods still struggle to produce reliable predictions in challenging regions, mainly due to the lack of strong geometric priors. In this paper, we propose $\textbf{GeoStereo}$, a unified stereo geometry estimation framework that leverages powerful diffusion priors to jointly predict disparity and surface normals. Specifically, GeoStereo couples a feed-forward stereo matching pipeline with a diffusion-based normal estimation branch. To enable effective interaction between the two tasks, we introduce a disparity to normal initialization strategy and construct a warp to left-view condition for the diffusion process. This coupled design allows the diffusion branch to provide strong structural priors that enhance disparity estimation in ill-posed regions, while the feed-forward branch offers reliable geometric guidance for accurate normal prediction. Extensive experiments show that GeoStereo performs reliably in challenging scenarios, including low-light environments, highly reflective surfaces, and transparent objects. Under zero-shot settings, it achieves Rank-1 disparity estimation on multiple benchmarks, including KITTI and NYUv2, and delivers the best normal estimation accuracy on many real indoor benchmarks, such as iBims-1 and ScanNet. Project page: https://qz-wei.github.io/GeoStereo.github.io/
Chinese Translation
立体匹配和表面法线估计是三维视觉中的基本任务。然而,现有的前馈立体方法在复杂区域仍然难以产生可靠的预测,主要是由于缺乏强大的几何先验。在本文中,我们提出了 $ extbf{GeoStereo}$,一种统一的立体几何估计框架,利用强大的扩散先验共同预测视差和表面法线。具体而言,GeoStereo 将前馈立体匹配管道与基于扩散的法线估计分支相结合。为了实现这两项任务之间的有效交互,我们引入了一种视差到法线的初始化策略,并为扩散过程构建了一个左视图条件的变换。这种耦合设计使得扩散分支能够提供强大的结构先验,从而增强在不适定区域的视差估计,而前馈分支则为准确的法线预测提供可靠的几何指导。大量实验表明,GeoStereo 在低光环境、高反射表面和透明物体等挑战性场景中表现可靠。在零-shot 设置下,它在多个基准测试(包括 KITTI 和 NYUv2)上实现了 Rank-1 视差估计,并在许多真实室内基准(如 iBims-1 和 ScanNet)上提供了最佳的法线估计精度。项目页面:https://qz-wei.github.io/GeoStereo.github.io/

地图/定位

1
地图/定位 / 1 / 2607.24409

Accuracy potential of visual localization exploiting high-end street-level imagery

利用高端街景影像的视觉定位精度潜力
Jonas Meyer, Stephan Nebiker, Pascal Theiler, Norbert Haala
cs.CV · cs.RO
Abstract
Accurate and reliable pose information with respect to a reference frame is increasingly demanded across applications such as autonomous navigation, surveying, robotics, and augmented and mixed reality. Visual localization can serve as a complementary positioning modality to GNSS, whose applicability and accuracy are often limited. Yet, the accuracy potential of visual localization has not been systematically investigated against survey-grade demands. This is mainly due to the lack of publicly available, large-scale outdoor datasets with ground-truth poses in the sub-centimeter range. In this work, we address both gaps. We introduce a scalable visual localization pipeline that employs precisely georeferenced, high-resolution street-level imagery directly as the scene representation. It combines prior-guided reference candidate selection with on-the-fly local Structure-from-Motion reconstruction and PnP-based pose estimation. We further present the FHNW Muttenz dataset, a real-world dataset covering a contiguous 10 km street network mapped in two mobile mapping campaigns approximately 1.5 years apart. It consists of high-resolution reference imagery and query sequences acquired by four different cameras across five representative scenes. All images are precisely co-registered, yielding 6-DoF ground-truth poses in the sub-centimeter range. Using this dataset, we evaluate the accuracy potential of visual localization. Our experiments demonstrate median pose accuracies in the range of 1-5 cm for translation and 0.05-0.1{\deg} for rotation, reaching as low as 1 cm and 0.03{\deg} under favorable conditions. These results show that visual localization can complement survey-grade GNSS positioning, paving the way for 3D geospatial data acquisition using consumer devices and fully automated georeferencing approaches. The dataset is publicly available at: https://fhnw-muttenz-vl-dataset.github.io/.
Chinese Translation
在自主导航、测绘、机器人技术以及增强现实和混合现实等应用中,对相对于参考框架的准确且可靠的位姿信息的需求日益增加。视觉定位可以作为全球导航卫星系统(GNSS)的补充定位方式,但其适用性和准确性往往受到限制。然而,视觉定位的精度潜力尚未针对测量级需求进行系统性的研究。这主要是由于缺乏公开可用的大规模户外数据集,其中包含亚厘米级的真实位姿。在本研究中,我们解决了这两个问题。我们引入了一种可扩展的视觉定位管道,直接利用精确地理参考的高分辨率街景影像作为场景表示。该管道结合了基于先验的参考候选选择、即时的运动重建(Structure-from-Motion)和基于PnP的位姿估计。我们进一步介绍了FHNW Muttenz数据集,这是一个真实世界的数据集,涵盖了一个连续的10公里街道网络,该网络在大约1.5年的两次移动测绘活动中进行了映射。该数据集由四个不同相机在五个代表性场景中获取的高分辨率参考影像和查询序列组成。所有影像都经过精确的配准,提供了亚厘米级的6自由度真实位姿。利用该数据集,我们评估了视觉定位的精度潜力。实验结果表明,平移的中位数位姿精度在1-5厘米范围内,旋转的中位数位姿精度在0.05-0.1°之间,在有利条件下可达到1厘米和0.03°。这些结果表明,视觉定位可以补充测量级GNSS定位,为使用消费设备和完全自动化的地理参考方法进行3D地理空间数据采集铺平道路。该数据集可在以下网址公开获取:https://fhnw-muttenz-vl-dataset.github.io/

预测/规划

2
预测/规划 / 1 / 2607.23743

Learning Traversability-Aware Global Planners for Long Horizon Off-Road Navigation

学习考虑可通行性的全局规划器以实现长距离越野导航
Kasi Viswanath, Jason M. Gregory, Shaunak Kolhe, Srikanth Saripalli
cs.RO
Abstract
Autonomous navigation across large off-road environments remains a challenging problem. Onboard sensors perceive only the immediate surroundings, yet safe and efficient routes depend on terrain features that extend well beyond the sensor horizon. Geo-spatial data sources such as satellite imagery, aerial LiDAR, and vector maps can close this gap, but learning traversability from them is difficult: dense labels are unavailable at scale, and existing methods rely on short-range sensing. We propose an efficient formulation that learns a continuous traversability map from overhead data, supervised directly by human-driven GPS trajectories and shaped by self-supervised geometric priors from LiDAR. Alongside the model, we release a public dataset of 299 scenes spanning $\sim\!1{,}244\,\mathrm{km}^{2}$ of diverse terrain, paired with $1{,}130\,\mathrm{km}$ of human driving. In field trials on a Clearpath Warthog across seven routes at two sites, our method achieves trajectories within $3.66\%$ of human path length and reduces operator interventions by $\sim\!85\%$ compared to local-planner-only autonomy.
Chinese Translation
在广阔的越野环境中进行自主导航仍然是一个具有挑战性的问题。机载传感器只能感知周围的即时环境,而安全高效的路线依赖于超出传感器视野的地形特征。地理空间数据源,如卫星图像、航空激光雷达(LiDAR)和矢量地图,可以弥补这一差距,但从中学习可通行性是困难的:大规模的密集标签不可用,现有方法依赖于短距离感知。我们提出了一种高效的公式,通过直接由人类驱动的GPS轨迹监督,并通过来自LiDAR的自监督几何先验进行塑造,从上方数据中学习连续的可通行性地图。我们还发布了一个公共数据集,包含299个场景,覆盖约1,244平方公里的多样地形,并配有1,130公里的人类驾驶数据。在对Clearpath Warthog进行的现场试验中,在两个地点的七条路线中,我们的方法实现了与人类路径长度相差3.66%的轨迹,并将操作员干预减少了约85%,相比于仅依赖局部规划器的自主性。
预测/规划 / 2 / 2607.23511

MOJITO: Modal Joint Learning for Unified End-to-End Autonomous Driving

MOJITO:统一端到端自主驾驶的模态联合学习
Zhijing Cheng, Xuancheng Zhang, Donglin Di, Lei Fan, Baorui Ma, Hao Li, Xun Yang
cs.CV
Abstract
End-to-end autonomous driving systems commonly follow a cascaded two-stage pipeline where a perception stage compresses multi-modal sensor inputs into a compact context and a downstream planner predicts trajectories conditioned on this context. We argue that this one-way perception-to-planning interface forces sensor inputs into a compact representation, losing the fine-grained details critical for planning. Moreover, by constraining the planner to this compressed context, it is difficult to leverage the rich representations offered by modern vision foundation models. To address these issues, we propose MOJITO, a unified sensor-to-action framework for end-to-end autonomous driving built on modal joint learning. MOJITO removes the cascaded interface and instead performs block-wise Modal Joint Attention that simultaneously updates action, image, and LiDAR features, allowing the planner to directly access multi-modal features during action generation. MOJITO achieves 88.9 PDMS on the NAVSIM v1 dataset and 88.4 EPDMS on the more challenging NAVSIM v2 dataset, setting a new state-of-the-art. Extensive experiments further demonstrate strong scalability, instruction following, and diverse trajectory generation. Code and models are available at https://github.com/mumucc01/MOJITO.
Chinese Translation
端到端自主驾驶系统通常遵循级联的两阶段流程,其中感知阶段将多模态传感器输入压缩为紧凑的上下文,而下游规划器则基于该上下文预测轨迹。我们认为,这种单向的感知到规划接口迫使传感器输入转化为紧凑的表示,导致规划所需的细粒度细节丢失。此外,限制规划器使用这种压缩上下文,使得难以利用现代视觉基础模型提供的丰富表示。为了解决这些问题,我们提出了MOJITO,一种基于模态联合学习的端到端自主驾驶统一传感器到动作框架。MOJITO去除了级联接口,而是执行块级模态联合注意力,同时更新动作、图像和激光雷达特征,使规划器在动作生成过程中能够直接访问多模态特征。MOJITO在NAVSIM v1数据集上达到了88.9的PDMS,在更具挑战性的NAVSIM v2数据集上达到了88.4的EPDMS,创造了新的最先进水平。大量实验进一步证明了其强大的可扩展性、指令跟随能力和多样化轨迹生成。代码和模型可在https://github.com/mumucc01/MOJITO获取。

端到端驾驶

1
端到端驾驶 / 1 / 2607.22697

Test-Time Coverage: Test-Conditioned Data Curation for Deployment-Aware Learning

测试时覆盖:面向部署的学习的数据条件化整理
Nadine Chang, Maying Shen, Shizhe Diao, Jialiang Wang, Jingde Chen, Thomas Breuel, Pavlo Molchanov, Rafid Mahmood, Jose M. Alvarez
cs.AI · cs.CV · cs.LG
Abstract
Deployed AI systems are often trained from broad candidate data pools, necessitating data curation towards the deployment test distribution. However, standard data curation methods score training-side criteria rather than directly optimizing deployment match. We introduce TTCov (Test-Time Coverage), a data-level test-conditioned curation method that uses test-side information before training instead of updating model weights at inference. TTCov decomposes deployment-conditioned curation into coverage and distribution. To represent coverage, it builds a task Atlas, a collection of LLM-based atomic propositions (APs) describing deployment-relevant concepts, seeded from open task knowledge and expanded with unmatched APs extracted from unlabeled deployment samples. To represent distribution, it instantiates the matched deployment APs with their frequencies, yielding a Knowledge Atlas (K-Atlas) that operationalizes the deployment distribution as a curation target. TTCov then selects a budgeted training set whose deployment APs distribution approximates this target. We apply TTCov towards autonomous driving (AD), keeping adaptation off the inference path while selecting data with greater deployment-relevant coverage, closer K-Atlas matching, and stronger downstream end-to-end driving performance than data-curation baselines, including seamless adaptability to novel domains via city-to-city expansion.
Chinese Translation
部署的人工智能系统通常从广泛的候选数据池中进行训练,因此需要对数据进行整理,以适应部署测试分布。然而,标准的数据整理方法主要侧重于训练侧标准,而不是直接优化部署匹配。我们提出了TTCov(测试时覆盖),这是一种数据级的测试条件化整理方法,它在训练之前使用测试侧信息,而不是在推理时更新模型权重。TTCov将部署条件的整理分解为覆盖和分布。为了表示覆盖,它构建了一个任务图谱(Task Atlas),这是一个基于大型语言模型(LLM)的原子命题(Atomic Propositions, APs)集合,描述与部署相关的概念,种子来自开放任务知识,并通过从未标记的部署样本中提取的未匹配APs进行扩展。为了表示分布,它实例化了匹配的部署APs及其频率,生成一个知识图谱(Knowledge Atlas, K-Atlas),将部署分布作为整理目标。然后,TTCov选择一个预算训练集,其部署APs分布近似于这一目标。我们将TTCov应用于自动驾驶(Autonomous Driving, AD),在选择具有更大部署相关覆盖、更接近K-Atlas匹配和更强下游端到端驾驶性能的数据时,保持适应性不影响推理路径,相较于数据整理基线,包括通过城市到城市扩展无缝适应新领域。

VLM/VLA

2
VLM/VLA / 1 / 2607.23132

DispatchRAG: Grounding Emergency Dispatch Decisions in Real-World Protocols from Traffic Accident Video

DispatchRAG:基于交通事故视频的现实协议进行紧急调度决策
Muhammad Sulthan Adhipradhana, Ehsan Javanmardi, Naren Bao, Manabu Tsukada
cs.CV
Abstract
Assessing the severity of a traffic accident scenario is important to decide which emergency service to dispatch. Missing an ambulance dispatch on a pedestrian accident is a fatal issue that can lead to death. Recently, Vision-Language Models (VLMs) have been a promising tool for accident reasoning, yet many VLMs are not grounded in real-life accident response protocols, making them not usable in accident severity assessment off-the-shelf. We introduced DispatchRAG, an accident assessor and dispatcher framework grounded in real-life Japanese traffic-accident response protocols, designed to enhance VLMs to generate an appropriate emergency response during an emergency scenario. Utilizing a RAG-based retrieval mechanism to retrieve the most relevant accident protocol and an LLM-powered reasoner to suggest the most proper response. To support evaluation, we introduce Accident Dispatch Dataset, a comprehensive dataset of accident assessment and emergency response according to Japanese accident response protocols adapted from the MM-AU dataset. We validate our framework on the Accident Dispatch Dataset, showing strong performance across various accident scenarios compared to the baseline VLM, pointing toward integration in autonomous vehicles that can automatically report both their own and nearby accidents.
Chinese Translation
评估交通事故场景的严重性对于决定调度哪种紧急服务至关重要。在行人事故中错过救护车的调度是一个致命问题,可能导致死亡。近年来,视觉-语言模型(Vision-Language Models, VLMs)成为事故推理的有前景工具,但许多VLM并未基于现实生活中的事故响应协议,导致它们无法直接用于事故严重性评估。我们提出了DispatchRAG,一个基于现实日本交通事故响应协议的事故评估和调度框架,旨在增强VLM在紧急场景中生成适当紧急响应的能力。该框架利用基于RAG的检索机制来获取最相关的事故协议,并使用大型语言模型(LLM)驱动的推理器来建议最合适的响应。为了支持评估,我们引入了事故调度数据集(Accident Dispatch Dataset),这是一个根据日本事故响应协议改编的全面事故评估和紧急响应数据集,源自MM-AU数据集。我们在事故调度数据集上验证了我们的框架,显示出在各种事故场景中相较于基线VLM的强大表现,指向在自动驾驶车辆中集成该框架的潜力,以便自动报告自身及附近的事故。
VLM/VLA / 2 / 2607.24199

Reasoning to Regulate: Chain-of-Thought for Traffic Rule Understanding

推理以规范:交通规则理解的思维链
Yueru Luo, Xu Yan, Changqing Zhou, Yiming Yang, Chao Zhan, Shuqi Mei, Chao Zheng, Zhen Li
cs.CV
Abstract
Understanding and complying with traffic regulations is a safety-critical requirement for autonomous driving, yet remains challenging due to the diversity and context dependence of traffic signage. Importantly, regulation understanding is not a simple recognition task, but a reasoning problem: whether a rule applies depends on interpreting the sign in relation to the spatial layout of lanes and scene context. To support such reasoning, MapDR provide fine-grained annotations that link each traffic sign's regulatory rules to the specific lanes they govern. Existing methods, however, largely treat this as direct sequence prediction, ignoring the underlying reasoning that connects sign semantics and map structure. To address this limitation, we explicitly incorporate reasoning into this task and propose a framework that equips vision-language models (VLMs) with chain-of-thought (CoT) capabilities. We first design a scalable CoT curation pipeline that bootstraps rationales from a strong LLM through a two-round strategy and employs a VLM-based verifier to filter out incorrect cases, yielding a high-quality set of (CoT, answer) pairs. Building on this foundation, we adopt a two-stage training scheme: supervised fine-tuning (SFT) to teach rationale-to-answer generation, followed by GRPO reinforcement learning with answer-grounded, fine-grained rewards to further improve final answer accuracy. Extensive experiments on MapDR show that our approach significantly improves both interpretability and accuracy, establishing the first reasoning-based framework for regulation-aware autonomous driving.
Chinese Translation
理解和遵守交通法规是自动驾驶的安全关键要求,但由于交通标志的多样性和上下文依赖性,这一任务仍然具有挑战性。重要的是,法规理解并不是一个简单的识别任务,而是一个推理问题:规则的适用性取决于将标志与车道的空间布局和场景上下文进行解释。为了支持这种推理,MapDR提供了细粒度的注释,将每个交通标志的监管规则与其所管理的特定车道联系起来。然而,现有方法在很大程度上将其视为直接的序列预测,忽视了连接标志语义和地图结构的潜在推理。为了解决这一局限性,我们明确将推理纳入这一任务,并提出一个框架,使视觉-语言模型(VLMs)具备思维链(CoT)能力。我们首先设计了一个可扩展的CoT整理管道,通过两轮策略从强大的大型语言模型(LLM)中引导出推理,并采用基于VLM的验证器过滤掉不正确的案例,从而生成高质量的(CoT,答案)对。在此基础上,我们采用了两阶段训练方案:监督微调(SFT)用于教授推理到答案的生成,随后通过基于答案的细粒度奖励进行GRPO强化学习,以进一步提高最终答案的准确性。在MapDR上的大量实验表明,我们的方法显著提高了可解释性和准确性,建立了第一个基于推理的法规感知自动驾驶框架。

仿真/数据

3
仿真/数据 / 1 / 2607.24320

Continual-RL for Generalization in Autonomous Racing on the RoboRacer Platform

基于持续强化学习的自主赛车泛化研究:以RoboRacer平台为例
Joel Siegert, Edoardo Ghignone, Michele Magno
cs.RO · eess.SY
Abstract
A key challenge in modern robotics is to adapt to changing environments, a challenge that is exacerbated when simulations cannot encompass every possible real-world configuration, and therefore Reinforcement Learning (RL) in the physical world becomes necessary. Continual Reinforcement Learning provides the tools to address this challenge; however, both the frameworks and the methods remain underexplored. Autonomous Racing and in particular the RoboRacer competition provide a testing ground for such methods, as learning to drive on a new track-floor combination with the least amount of new experience naturally frames a continual learning problem. This work tries to address this gap by proposing a continual RL framework based on Continual Backpropagation that is able, with only real-world data, to train a generalistic policy on a set of tracks and then fine- tune it within 15 minutes to outperform classical controllers. Furthermore, a comparison method based on offline RL is proposed, and a simulation analysis of the plasticity properties of the methods is conducted.
Chinese Translation
现代机器人技术面临的一个关键挑战是适应不断变化的环境,当模拟无法涵盖所有可能的现实世界配置时,这一挑战尤为突出,因此在物理世界中进行强化学习(Reinforcement Learning, RL)变得必要。持续强化学习提供了应对这一挑战的工具;然而,相关框架和方法仍然未得到充分探索。自主赛车,特别是RoboRacer竞赛,为此类方法提供了测试平台,因为在新的赛道-地面组合上以最少的新经验学习驾驶自然构成了一个持续学习问题。本研究试图通过提出一个基于持续反向传播(Continual Backpropagation)的持续强化学习框架来填补这一空白,该框架能够仅利用现实世界数据在一组赛道上训练出通用策略,并在15分钟内进行微调以超越经典控制器。此外,提出了一种基于离线强化学习的比较方法,并对这些方法的可塑性特性进行了模拟分析。
仿真/数据 / 2 / 2607.22654

MINT-V2X: A Mobility-Integrated Network Trajectory Dataset for Predictive Resource Management

MINT-V2X:一种用于预测资源管理的移动集成网络轨迹数据集
Abdullah Anjum, Abdolazim Rezaei, Mehdi Sookhak
cs.AI
Abstract
Vehicle-to-Everything (V2X) communication systems are based on datasets that not only contain vehicle trajectory data but also wireless network parameters with a realistic level of fidelity, enabling the creation of prediction and optimization models. There is a very critical research infrastructure gap today, and publicly available datasets are likely to be limited to one of the two: mobility or network parameters, and rarely provide a single, integrated view that combines both. This paper introduces MINT-V2X, a comprehensive dataset generated by coupling SUMO traffic dynamics with OMNeT++/Simu5G network simulation. The validation framework is composed of 14 standardized tests based on 3GPP Release 14 (C-V2X), ETSI standards and Shannon capacity theory. The resulting dataset contains 9.87 million synchronized data points from 1,386 vehicles from 15 roadside units (RSUs) during 3 hours of urban traffic simulation. We demonstrate strict algorithmic consistency through network metric correlations (CQI-SINR: 0.993; SINR-PDR: 0.946). Finally, we demonstrate the value of the dataset by conducting an RSU load prediction case study, showing that using trajectory data yields better predictive performance than network-history-only baselines. The dataset, experiments, and complete SUMO configuration files are available in the GitHub repository to facilitate reproduction on alternative simulation stacks.
Chinese Translation
车对一切(V2X)通信系统基于的数据集不仅包含车辆轨迹数据,还包含具有现实保真度的无线网络参数,从而能够创建预测和优化模型。目前存在一个非常关键的研究基础设施缺口,公开可用的数据集往往限于两者之一:移动性或网络参数,且很少提供一个综合视角来结合两者。本文介绍了MINT-V2X,这是一个通过将SUMO交通动态与OMNeT++/Simu5G网络仿真相结合生成的综合数据集。验证框架由基于3GPP Release 14(C-V2X)、ETSI标准和香农容量理论的14个标准化测试组成。生成的数据集包含来自15个路边单元(RSUs)中1,386辆车辆的9.87百万个同步数据点,涵盖3小时的城市交通仿真。我们通过网络指标相关性(CQI-SINR: 0.993; SINR-PDR: 0.946)展示了严格的算法一致性。最后,我们通过进行RSU负载预测案例研究展示了数据集的价值,结果表明使用轨迹数据的预测性能优于仅基于网络历史的基线。数据集、实验和完整的SUMO配置文件已在GitHub仓库中提供,以便在替代仿真堆栈上进行复现。
仿真/数据 / 3 / 2607.23537

ObsDriveBench: Benchmarking Multimodal Understanding under Adverse Weather with Observability Awareness

ObsDriveBench:在不利天气条件下基于可观测性的多模态理解基准测试
Qiao Yan, Yihan Wang, Zhenghao Xing, Jiaqi Xu, Pheng-Ann Heng
cs.AI
Abstract
Autonomous driving under adverse weather remains a critical challenge, yet existing vision-language benchmarks mainly evaluate under standard conditions, synthetic corruptions, or single modality. As a result, it remains unclear how vision-language models behave under real-world adverse weather with multi-modal inputs. We argue that a key difficulty lies in degraded environmental observability: under fog, rain, snow, and low illumination, multi-modal observations become unreliable and cross-modally inconsistent, posing challenges to scene understanding, and subsequent decision-making. To study this, we introduce \textbf{ObsDriveBench}, a real-world multi-modal benchmark for adverse-weather autonomous driving. Our benchmark is designed with three capability dimensions: \textbf{observability awareness}, \textbf{spatial reliability}, and \textbf{risk-aware decision-making}, enabling fine-grained diagnosis of model behavior under degraded observations. We construct the benchmark through observability meta-annotation, scene description, and capability oriented multiple-choice tasks over synchronized camera, LiDAR, and radar inputs, forming a benchmark with over 14k training and 13k test questions. Experiments reveal consistent performance degradation of existing vision-language models. We further introduce \textbf{ObsDrive} model with normal-weather supervised fine-tuning and adverse-weather reinforcement learning, improving robustness across all three capabilities. The dataset and evaluation code will be released at \href{https://github.com/russellyq/ObsDriveBench}{\texttt{ObsDriveBench}}.
Chinese Translation
在不利天气条件下的自主驾驶仍然是一个关键挑战,但现有的视觉-语言基准主要在标准条件、合成干扰或单一模态下进行评估。因此,尚不清楚视觉-语言模型在真实世界的不利天气条件下如何表现,尤其是在多模态输入的情况下。我们认为一个关键困难在于环境可观测性的下降:在雾、雨、雪和低光照条件下,多模态观测变得不可靠且跨模态不一致,这对场景理解和后续决策造成了挑战。为此,我们引入了 extbf{ObsDriveBench},这是一个针对不利天气条件下自主驾驶的真实世界多模态基准。我们的基准设计了三个能力维度: extbf{可观测性意识}、 extbf{空间可靠性}和 extbf{风险感知决策},以便对模型在降级观测下的行为进行细致诊断。我们通过可观测性元注释、场景描述和基于能力的多项选择任务构建了该基准,涵盖同步的摄像头、激光雷达(LiDAR)和雷达输入,形成一个包含超过14,000个训练问题和13,000个测试问题的基准。实验结果显示现有视觉-语言模型的性能一致下降。我们进一步引入了 extbf{ObsDrive}模型,通过正常天气的监督微调和不利天气的强化学习,提高了三个能力维度的鲁棒性。数据集和评估代码将发布在 exttt{ObsDriveBench}上。