Effacer les filtres
Effacer les filtres

extraction road from lidar

8 vues (au cours des 30 derniers jours)
nur shafinaz
nur shafinaz le 18 Nov 2015
Modifié(e) : Prasanna le 10 Sep 2024 à 10:46
Hi,
I have an intensity image of lidar and already import to matlab. I already use canny method as the shown result below The question is how we want to create a specific coding to ask matlab to extract the edge of the road (both side)?
I really really need help here. Thank you.

Réponses (1)

Prasanna
Prasanna le 10 Sep 2024 à 10:46
Modifié(e) : Prasanna le 10 Sep 2024 à 10:46
Hi Nur,
Extracting the edges of a road from a LiDAR intensity image using edge detection methods like the Canny algorithm is a common task in computer vision. However, isolating the specific edges of a road requires additional processing steps beyond basic edge detection. Here’s a general approach to follow:
Steps to Extract Road Edges
  • Preprocess the Image: Enhance the contrast and remove noise if necessary.
  • Edge Detection: Apply the Canny edge detector to identify edges.
  • Post-process Edges: Use morphological operations like ‘bwareafilt, etc to clean up the edges.
  • Extract Road Edges: Use techniques like the Hough Transform to identify and extract lines that likely correspond to road edges.
  • Filter and Select Road Edges: Apply criteria to select the edges that correspond to the road, such as parallelism, length, and position.
Consider using functions like ‘edge’,hough’,houghpeaks’,houghlines’ to perform the same. Refer the following documentation for more information regarding the same:
Also, you can try generating a RoadRunner scene from recorded Lidar data as given in the following link: https://www.mathworks.com/help/driving/ug/generate-roadrunner-hd-map-from-lidar-data-for-scenario-generation.html
Hope this helps!

Catégories

En savoir plus sur Labeling, Segmentation, and Detection dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by