Compute Angle of each contour point
Hello, After a Findcontour, how to compute the angle of each point of the contour ? Thank you, Christophe
You need three points for an angle. Or two if you consider the angular component of a vector in polar coordinates. In C++, represent a 2D point as a std::complex<double> type. Check out the std::complex, std::polar, and std::arg functions.
Asked: 2017-09-28 08:04:27 -0600
Seen: 516 times
Last updated: Sep 28 '17
What is "angle of each point" ?