Vertical line for building detection
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi
I am finding a way to identify vertical building lines from camera images -offline so that it can be used for mapping purpose.
currently like tall building, vertical line of building is required (source from camera images) to estimate bulding location and isolate building from other scenes.Any one can help me?
0 comentarios
Respuestas (1)
KALYAN ACHARJYA
el 11 de En. de 2021
You can do the thresholding or oher image suitable segmentation approach to get the ROI, (preferbly vertical). In that case, you can use the following kernel operation to locate the vertical lines (choose the mask size accordingly)
ker=[-1 0 1
-1 0 1
-1 0 1]
Hope you know how to apply mask on images. This would be more obvious to answer, if you can attach a sample image.
Ver también
Categorías
Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!