extraction road from lidar

1 view (last 30 days)
nur shafinaz
nur shafinaz on 18 Nov 2015
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.

Answers (1)

Constantino Carlos Reyes-Aldasoro
This can be solved by using a combination of morphological operators and image processing steps:
1) label all the regions that are not the edges, say your current image is called imageWithEdges e.g. bwlabel(1-imageWithEdges). That will have a series of regions (i.e. superpixels), and the largest one is the road itself.
2) Use regionprops to find the area of all the regions. Select the one with the largest area as the road.
3) Fill the region as it will have some holes with imfill holes.
4) Find the edges of the new region, and thar would be a very good approximation to the edges of the road.
Hope this solves your problem.

Categories

Find more on Labeling, Segmentation, and Detection in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!