VectorMapNet: End-to-end Vectorized HD Map Learning
VectorMapNet predicts sparse polylines end-to-end from onboard sensors, surpassing SOTA by 14.2 mAP on nuScenes.
Key Findings
Methodology
VectorMapNet employs multi-modal feature fusion (camera and LiDAR) to produce BEV features, utilizing deformable detection Transformer to locate map elements. It predicts element keypoints and generates polylines via autoregressive sequence modeling, avoiding pixel-level segmentation and heuristic post-processing. The architecture comprises BEV feature extraction, element detection with element queries, and polyline sequence generation. Loss functions include bipartite matching for detection and maximum likelihood for polyline vertices, trained with teacher forcing and fine-tuning. The model effectively captures complex geometries and fine details, enabling high-precision vectorized HD maps.
Key Results
- On nuScenes, VectorMapNet achieves a 14.2 mAP improvement over HDMapNet, with qualitative results showing detailed boundary capture and smooth, continuous polylines. In Argoverse2, it surpasses baseline methods with a 14.6 mAP gain, demonstrating strong generalization. The model accurately models sharp corners and intricate road geometries, supporting downstream tasks like motion forecasting and planning.
- The approach outperforms raster-based segmentation methods by directly predicting vector primitives, reducing post-processing errors, and providing more usable, instance-aware maps. Ablation studies confirm the importance of multi-modal fusion, element keypoints, and autoregressive sequence modeling for accuracy.
Significance
This work advances autonomous driving perception by providing a fully end-to-end, vectorized HD map prediction framework. It addresses the limitations of pixel-based segmentation, offering continuous, detailed, and instance-aware maps suitable for downstream planning and prediction modules. The method reduces complexity, enhances scalability, and improves the fidelity of map representations, fostering safer and more reliable autonomous systems.
Technical Contribution
The key technical innovations include the integration of multi-modal feature fusion into a unified BEV space, the use of deformable detection transformers for precise element localization, and autoregressive sequence models for multi-segment polyline generation. These components enable the model to handle diverse map element geometries and topologies efficiently, providing a scalable, end-to-end solution that surpasses previous methods relying on heuristic post-processing or dense raster predictions.
Novelty
This is the first end-to-end framework capable of directly predicting sparse, vectorized HD maps from onboard sensors without pixel-level segmentation or heuristic post-processing. It combines deformable detection with sequence modeling to produce detailed, continuous map elements, setting a new standard in online map learning for autonomous driving.
Limitations
- The model's robustness under occlusion or extreme weather conditions remains to be validated, as input sparsity can affect detection accuracy.
- Training requires large annotated datasets, and generalization to unseen environments may need further domain adaptation.
- Computational costs are significant, especially for real-time deployment in resource-constrained platforms.
Future Work
Future directions include incorporating temporal information for dynamic map updates, exploring semi-supervised or unsupervised learning to reduce annotation dependency, and enhancing robustness against adverse weather and occlusion. Extending the framework to 3D map prediction and multi-sensor fusion strategies will further improve its applicability in complex urban scenarios.
AI Executive Summary
Autonomous driving relies heavily on high-definition (HD) semantic maps to navigate complex urban environments. Traditional methods depend on manual annotation, which is labor-intensive and lacks scalability, limiting deployment in real-world scenarios. Recent deep learning approaches have attempted to generate maps via dense rasterized segmentation, but these often lack instance-level information and require heuristic post-processing, leading to inaccuracies and inefficiencies.
In response, Yicheng Liu and colleagues introduce VectorMapNet, a novel end-to-end framework that directly predicts sparse, vectorized map elements—specifically, polylines—using onboard sensors such as cameras and LiDAR. The core idea is to convert multi-modal sensor data into bird’s-eye view features, then detect map elements via deformable detection transformers, and finally generate detailed polylines through autoregressive sequence models. This approach eliminates the need for pixel-based segmentation and heuristic post-processing, streamlining the entire mapping pipeline.
Extensive experiments on nuScenes and Argoverse2 datasets demonstrate that VectorMapNet outperforms previous state-of-the-art methods by at least 14.2 mAP. Qualitative results show the model's ability to capture fine geometric details, such as sharp corners and complex road boundaries, producing comprehensive and continuous maps suitable for downstream tasks like motion forecasting and path planning. These advances significantly enhance the fidelity, scalability, and real-time applicability of HD maps in autonomous driving systems.
The significance of this work lies in its potential to transform map learning from a manual, pixel-based process into an automated, vectorized, end-to-end pipeline. This not only reduces labor costs but also improves map accuracy and utility, enabling safer and more reliable autonomous vehicles. The technical innovations—multi-modal fusion, deformable detection, and autoregressive polyline generation—set new benchmarks in the field.
Looking ahead, future research will focus on integrating temporal data for dynamic mapping, reducing reliance on large annotated datasets, and optimizing computational efficiency for real-time deployment. Overall, VectorMapNet marks a pivotal step toward fully autonomous, scalable, and precise map construction, promising broad impacts across industry and academia.
Deep Dive
Glossary
Polyline (多段线)
一系列有序连接的点组成的线段,用于表示道路边界、车道线等地图元素,具有方向性和连续性。
模型直接预测多段线作为地图的基本表示,避免像素级分割的复杂后处理。
Bird’s-eye view (鸟瞰图)
从上方俯视的二维投影,用于融合多模态传感器信息,便于检测和预测地图元素。
模型将相机和LiDAR数据转换到鸟瞰图空间,进行特征提取和元素检测。
Deformable Transformer (变形检测Transformer)
一种基于Transformer的检测机制,能灵活定位不同尺度和形状的目标,减少位置偏差。
用于检测地图元素的位置和类别,提高检测精度。
Autoregressive sequence model (自回归序列模型)
逐步生成序列的模型,每一步依赖前一步的输出,用于多段线顶点的连续预测。
模型用它生成多段线顶点,捕获复杂几何形状。
mAP (mean Average Precision, 平均精度均值)
衡量检测或预测任务准确率的指标,值越高代表性能越好。
用于评估地图元素检测和多段线预测的准确性。
Open Questions Unanswered questions from this research
- 1 模型在极端天气或严重遮挡条件下的鲁棒性仍需验证,如何提升在复杂环境中的表现是未来研究重点。
- 2 多模态融合策略在不同传感器配置下的适应性和泛化能力仍有待提升,尤其是在低资源场景。
- 3 实时性优化和模型压缩以支持边缘设备部署,是实现商业化应用的关键挑战。
Applications
Immediate Applications
自动驾驶车辆的实时地图构建
利用VectorMapNet从车载传感器直接生成高精度地图,减少人工标注成本,提升路径规划和避障能力。
智能交通管理
通过自动更新道路边界和交通标志信息,支持智能交通信号控制和交通流优化。
Long-term Vision
全自动城市地图生成平台
结合多车协作与云端处理,实现大规模城市地图的自动化、持续更新,推动智慧城市建设。
Abstract
Autonomous driving systems require High-Definition (HD) semantic maps to navigate around urban roads. Existing solutions approach the semantic mapping problem by offline manual annotation, which suffers from serious scalability issues. Recent learning-based methods produce dense rasterized segmentation predictions to construct maps. However, these predictions do not include instance information of individual map elements and require heuristic post-processing to obtain vectorized maps. To tackle these challenges, we introduce an end-to-end vectorized HD map learning pipeline, termed VectorMapNet. VectorMapNet takes onboard sensor observations and predicts a sparse set of polylines in the bird's-eye view. This pipeline can explicitly model the spatial relation between map elements and generate vectorized maps that are friendly to downstream autonomous driving tasks. Extensive experiments show that VectorMapNet achieve strong map learning performance on both nuScenes and Argoverse2 dataset, surpassing previous state-of-the-art methods by 14.2 mAP and 14.6mAP. Qualitatively, VectorMapNet is capable of generating comprehensive maps and capturing fine-grained details of road geometry. To the best of our knowledge, VectorMapNet is the first work designed towards end-to-end vectorized map learning from onboard observations. Our project website is available at \url{https://tsinghua-mars-lab.github.io/vectormapnet/}.