How to find angle between two line?
Please tell me how to find angle between two lines using OpenCV?
Please tell me how to find angle between two lines using OpenCV?
The answer depends on how you represent the line objects.
As you may have found out yourself, OpenCV does not come with a standard representation for 2D lines, whether it is finite (line segment), semi-finite (ray), or infinite (line equation).
Due to historical reasons, each algorithm that uses line objects adopt whatever was more convenient, or rather more "historical", representation.
Most of the time, when the finite line segment representation is used, the point pair (two cv::Point_<T>
objects) are used to denote the two endpoints.
In some other usage, the line equation a * x + b * y + c == 0
would be far more convenient; unfortunately OpenCV does not provide native support for it.
To answer your question, when the point-pair representation is used, the cosine formula can be used.
http://mathworld.wolfram.com/Line-LineAngle.html
As an unrelated but useful note, you can find a lot of mathematically relevant answers on the Wolfram MathWorld website. It only requires high-school geometry and calculus to be able to search for answers there.
You can start by making sure that the next time, you do not add 100 question marks just to make your point clear. As to the solution of your problem, using the search function would have given you the following result:
However this isn't really a OpenCV problem, rather a mathematical problem.
Asked: 2014-10-02 00:40:45 -0600
Seen: 18,825 times
Last updated: Oct 02 '14