图像旋转是指图像按照某个位置转动一定的角度的过程,旋转中图像扔保持着原始尺寸。图像旋转后的图像水平对称轴、垂直对称轴及中心坐标原点可能都会发生变换,因此需要对图像旋转中的坐标进行相应的转换。
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/core/core.hpp>
#include <iostream>
#include <cmath>
using namespace std;
cv::Mat angleRotatee(cv::Mat &src, int angle)
{
//角度转换