opencv 图像旋转任意角度
程序员文章站
2022-04-06 15:33:54
...
//// 旋转90度
cv::Mat dst;
cv::Point center(img.cols / 2, img.rows / 2); //旋转中心
double angle = -90.0; //角度
double scale = 1.0; //缩放系数
cv::Mat rotMat = getRotationMatrix2D(center, angle, scale);
warpAffine(img, img, rotMat, img.size());