OpenCV 已知点的坐标,和旋转的角度,请问用什么函数旋转图片?
我想让图像按照某一点(非图像中心点)偏转a角度,这个有没有现成的函数?
谢谢
y6244
9 years, 7 months ago
Answers
用 cv::warpAffine() 可以实现。
#include "opencv2/imgcodecs.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
using namespace cv;
cv::Mat rotateImage(const cv::Mat &src, cv::Point2f anchor_pt, double angle)
{
cv::Mat rot_mat = cv::getRotationMatrix2D(anchor_pt, angle, 1.0);
cv::Mat dst;
cv::warpAffine(src, dst, rot_mat, src.size());
return dst;
}
int main( int argc, char** argv )
{
cv::Mat src = cv::imread("C:/lena.bmp");
cv::Mat dst;
cv::Point2f anchor_pt(src.cols / 3.0f, src.rows / 3.0f);
double rot_angle = 45.0;
dst = rotateImage(src, anchor_pt, rot_angle);
cv::imshow("src", src);
cv::imshow("dst", dst);
cv::waitKey(0);
return 0;
}
動と静D均衡
answered 9 years, 7 months ago