-
-
Save etrigger/d4bf3fb2a6b95a9d5900c787709b7c10 to your computer and use it in GitHub Desktop.
Rotate point in OpenCV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cv::Point2f RotatePoint(const cv::Point2f& p, float rad) | |
{ | |
const float x = std::cos(rad) * p.x - std::sin(rad) * p.y; | |
const float y = std::sin(rad) * p.x + std::cos(rad) * p.y; | |
const cv::Point2f rot_p(x, y); | |
return rot_p; | |
} | |
cv::Point2f RotatePoint(const cv::Point2f& cen_pt, const cv::Point2f& p, float rad) | |
{ | |
const cv::Point2f trans_pt = p - cen_pt; | |
const cv::Point2f rot_pt = RotatePoint(trans_pt, rad); | |
const cv::Point2f fin_pt = rot_pt + cen_pt; | |
return fin_pt; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment