Calculate normal 2d vectors of a edge line and its vector angle with respective to y axis
9 次查看(过去 30 天)
显示 更早的评论
I am working on extracting features from detected edge as shown in the attached image. I have data set of edge coordinate (x,y). My goal is to determine the normal vector of this edge line and compute the angle with respect to y-axis. So the found angle can be used to rotate the tilted image.
1. Extract edge coordinate (x,y) 2. Determine normal vectors using edge coordinates 3. Compute angle between normal vector and y-axis 4. Rotate the image by angle found at 3.
Any helps or suggestions would be highly appreciated.
0 个评论
采纳的回答
Fei Deng
2017-5-1
Hello, since you have data set of edge coordinate (x,y), you can:
(1) get the angle between this edge line and x-axis by doing linear fit.
Now you have the information of normal vector at well. The angle between normal vector and y-axis is same as angle between this edge line and x-axis.
(2) To rotate the image by θ, you can rotate every point (vector) by θ, then trigonometry states that the new coordinates (x', y') are
x' = x cos θ − y sin θ
y' = x sin θ + y cos θ
If you do not have data set of edge coordinate (x,y) at the very beginning, and you want to extract them from an image file, assuming that you have computer vision system toolbox, you can try detecting corners. Take a look at this page https://www.mathworks.com/help/vision/object-detectors.html, unfold "detect objects using point features".
2 个评论
DGM
2022-7-25
@Mehri Mehrnia's comment-as-answer moved here:
how to find normal vector in each edge pixel?
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!