How to convert a binary image into lines only

9 visualizaciones (últimos 30 días)
Max
Max el 29 de Jun. de 2019
Respondida: Divya Gaddipati el 16 de Jul. de 2019
The image I have is on the left side and I am trying to turn in into lines only (possibly array of lines) as shown on the right image below.
a.jpg
Is it possible to achieve with hough transform and right settings?

Respuestas (1)

Divya Gaddipati
Divya Gaddipati el 16 de Jul. de 2019
Hi,
You can use the command “bwskel” for this purpose. It takes two parameters as input, the binary image and minimum branch length. For example,
result = bwskel(im, 'MinBranchLength', N);
where “im” is the binary image and the parameter “N” is the minimum branch length i.e., “bwskel” prunes branches shorter than the specified “N”.
For more information on “bwskel”, you can refer to the following documentation:

Community Treasure Hunt

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

Start Hunting!

Translated by