- [Paper] [CVPR 2025 Highlight] Driving by the Rules: A Benchmark for Integrating Traffic Sign Regulations into Vectorized HD Map
- [Code] MIV-XJTU/MapDR
- [Homepage] miv-xjtu.github.io/MapDR
- [Dataset] MapDR & MapDR-mini
- [Model] RuleVLM
The ability to discern rules from traffic signs and to associate them with specific lanes is pivotal for autonomous navigation. The overall task focuses on extracting lane-level driving rules and reasoning the correspondence between these rules and the centerlines in the local vectorized HD map.
The final correspondence forms a bipartite graph for evaluation.
R.E. sub-task involves extracting multiple rules from a series of image sequences. The Precision and Recall of driving rules serve as the evaluation metric.
C.R. sub-task aims to evaluate the capacity to establish the correspondence between driving rules and centerlines in the local HD map. The Precision and Recall of driving rules serve as the evaluation metric.
MapDR dataset meticulously annotated with traffic sign regulations and their correspondences to lanes. The dataset encompasses a diverse range of scenarios, weather conditions, and traffic situations, with over
Each video clip in MapDR may contain multiple lane-level rules, denoted as
Based on formatted rules
First Download dataset from MapDR or MapDR-mini.
# First concatenate the full dataset
cat mapdr_* > mapdr.tar.gz
# unzip the full dataset
tar xvzf mapdr.tar.gz
# Create a video for target case
# Example: python visualize/visualize.py /mapdr_mini/BusLane/0cdea530a3c24022b22a7320ad2e4818 ./visualization
python visualize/visualize.py path/to/data path/to/save
The inference code and adapter weights of End-to-End baseline approach RuleVLM proposed in the paper is released. Researcher can reproduce the evaluation following RuleVLM.
MapDR is distributed under CC BY-NC-SA 4.0 license.
Please use the following citation when referencing MapDR:
@misc{chang2025drivingrulesbenchmarkintegrating,
title={Driving by the Rules: A Benchmark for Integrating Traffic Sign Regulations into Vectorized HD Map},
author={Xinyuan Chang and Maixuan Xue and Xinran Liu and Zheng Pan and Xing Wei},
year={2025},
eprint={2410.23780},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2410.23780},
}