This pipeline extracts road line markings from the image plane and projects them in the world coordinate frame exploiting the camera calibration. It then allows to accumulate the detections throughout an entire acquisition, in order to obtain a raw point map.
Process data stream frame-by-frame and visualize all intermediate results: image-plane features, extracted lines, and projected lines in the BEV plane.
python main_plot_frame_by_frame.py
Process a data stream frame-by-frame and store each line detection in a CSV file.
This CSV can then be post-processed visualize the line markings detected over the entire data stream, together with the vehicle trajectory.
python main_store_frames_to_csv.py
--> process the data stream and store the detections in a CSV filepython main_plot_all_from_csv.py
--> load the CSV file and visualize the accumulated point map
.
├── configs.py
├── data/ # For the dataset specifications, see below
│ ├── calibration/
│ ├── gt/
│ ├── imgs/
│ └── odom/
├── outputs/ # Placeholder for output folder
├── environment.yml # Conda environment
├── features_cnn/ # CNN used to extract the line markings from the image plane (Simone Mentasti © 2020)
├── includes
│ ├── Camera.py # Class for handling the camera calibration
│ ├── Bev.py # Given a camera calibration, produces and manipulates Bird's Eye View (BEV)
│ ├── input_manager.py # Management of input data stream (images/video), ground truth and vehicle odometry
│ ├── output_manager.py # Management of visualization and storage of video results
│ ├── procedural/ # Main stages of the extraction pipeline:
│ │ ├── feature_extraction.py # Line detection in the image plane through CNN and thresholding
│ │ ├── feature_point_selection.py # Line points extraction through Window-based Line Following (WLF) algorithm
│ │ └── fitting.py # Simple line fitting algorithms
| | # Private utils
│ ├── Line.py
│ ├── MovingWindowLineFollower.py
│ ├── geo.py
│ ├── manage_gt.py
│ ├── plot_utils.py
│ └── utils.py
|
| # Main scripts
├── main_plot_all_from_csv.py
├── main_plot_frame_by_frame.py
└── main_store_frames_to_csv.py
All main scripts can be configured through flags at the beginning of the scripts and a global config file configs.py
, which holds information on the dataset and on the parameters needed by the pipeline.
If you use this work, please cite us!
Our frame-by-frame line detection pipeline was first used in this work:
Advances in centerline estimation for autonomous lateral control [IEEEXplore] [arXiv]
Paolo Cudrano, Simone Mentasti, Matteo Matteucci, Mattia Bersani, Stefano Arrigoni, and Federico Cheli
Presented at 2020 IEEE Intelligent Vehicles Symposium (IV), Oct 2020
@inproceedings{9304729,
author = {Cudrano, Paolo and Mentasti, Simone and Matteucci, Matteo and Bersani, Mattia and Arrigoni, Stefano and Cheli, Federico},
booktitle = {2020 IEEE Intelligent Vehicles Symposium (IV)},
title = {Advances in centerline estimation for autonomous lateral control},
year = {2020},
volume = {},
number = {},
pages = {1415-1422},
keywords = {},
doi = {10.1109/IV47402.2020.9304729},
issn = {2642-7214},
month = oct
}
Our line point accumulation pipeline was used as a pre-processing step for this work:
Clothoid-Based Lane-Level High-Definition Maps: Unifying Sensing and Control Models [IEEEXplore]
Paolo Cudrano, Barbara Gallazzi, Matteo Frosi, Simone Mentasti, and Matteo Matteucci
In IEEE Vehicular Technology Magazine, Dec 2022
@article{9935693,
author = {Cudrano, Paolo and Gallazzi, Barbara and Frosi, Matteo and Mentasti, Simone and Matteucci, Matteo},
journal = {IEEE Vehicular Technology Magazine},
title = {Clothoid-Based Lane-Level High-Definition Maps: Unifying Sensing and Control Models},
year = {2022},
volume = {17},
number = {4},
pages = {47-56},
keywords = {},
doi = {10.1109/MVT.2022.3209503},
issn = {1556-6080},
month = dec
}
The dataset used in our work and for this demo is available at this link.
Please reach out for more info!
Beyond Image-Plane-Level: A Dataset for Validating End-to-End Line Detection Algorithms for Autonomous Vehicles
Simone Mentasti, Paolo Cudrano, Stefano Arrigoni, Matteo Matteucci, and Federico Cheli
Presented at 2023 IEEE 26th International Conference on Intelligent Transportation Systems (ITSC) Workshop on Building Reliable Datasets for Autonomous Vehicles
@INPROCEEDINGS{mentasti2023beyond,
author={Mentasti, Simone and Cudrano, Paolo and Arrigoni, Stefano and Matteucci, Matteo and Cheli, Federico},
booktitle={2023 IEEE 26th International Conference on Intelligent Transportation Systems (ITSC) Workshop on Building Reliable Datasets for Autonomous Vehicles},
title={Beyond Image-Plane-Level: A Dataset for Validating End-to-End Line Detection Algorithms for Autonomous Vehicles},
year={2023},
pages={1-6},
month={Sep}
}