Find the orientation of the skeletonized image
5 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(2 个)
Matt J
2020-1-16
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
2020-1-16
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
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!