Calculate normal 2d vectors of a edge line and its vector angle with respective to y axis

21 ビュー (過去 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.

採用された回答

Fei Deng
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 件のコメント
hyz
hyz 2017 年 5 月 1 日
Hi Fei Deng. Thank you for your feedback.
(1) I am using ctool function to get linear fit line.
Could you point me any direction on computing angles between 2 lines on MATLAB? And how we would know the normal vectors information? Could you elaborate that further?
(2) could i use imrotate as well to achieve the same thing you mentioned?
DGM
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!

Translated by