How to connect lines in a skeletonized image with arcs

1 visualización (últimos 30 días)
Steve
Steve el 11 de Jun. de 2019
Respondida: Steve el 12 de Jun. de 2019
Hi,
I'm trying to find a way to have MATLAB connect the lines of the tripods in the first image (i.e., vertex_tripods.bmp) with arcs so that it looks something like the second image (i.e., vertex_tripods_connected.bmp). I would also like to have MATLAB calculate the angles of the tripods in the first image (with respect to the vertical axis). Thanks in advance for your help!

Respuestas (2)

darova
darova el 12 de Jun. de 2019
Use bwmorph() to find branch points. I sorted them in counter clock-wise order:
img.png
Find distance and center between neighbor points:
img1.png
Assume arc radius is 1000 pixels. Draw perpendicular vector (length L) from center of a segment - get arc center p0
img2.pngimg3.png
Rotate radius vector using angle and rotation matrix to get points on arc
img4.png
  4 comentarios
darova
darova el 12 de Jun. de 2019
can you show how this should looks like?
darova
darova el 12 de Jun. de 2019
are those connections can be just straight lines?

Iniciar sesión para comentar.


Steve
Steve el 12 de Jun. de 2019
It should look like the second attached image (vertex_tripods_connected.bmp). In theory, the connections cannot be straight lines, but they can be arcs with very large radii.

Productos


Versión

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by