Find the orientation of the skeletonized image
5 views (last 30 days)
Show older comments
Is there any command that can find the orientation of skeletonized image? like the attached image that average angle of lines with respect to horizontal line.
0 Comments
Answers (2)
Matt J
on 16 Jan 2020
You can use houghlines to get the endpoints of all the line segments in the image. From that, you can easily calculate their slopes.
darova
on 16 Jan 2020
You can write your own function:
- use imline to create a line
- draw a line aligned with horizontal/vertical one
- calculate the angle
- rotate image
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!