opencv - 旋转 cv::Rect 的中心

标签 opencv rotation rectangles

我有一张图片,我在图片上放置了一个矩形。然后我旋转图像。如何获取旋转图像上矩形的中心?

或者我可以以某种方式旋转一个矩形来放置旋转图像吗?我认为在这种情况下,旋转必须沿着与用于旋转图像的点相同的点进行。

这是上面放置了一个矩形的图像。

enter image description here

这是旋转后的图像。

enter image description here

这是我用来旋转图像的代码:

cv::Mat frame, frameRotated;
frame = cv::imread("lena.png");

cv::Rect rect(225,250,150,150);
cv::rectangle(frame, rect, cv::Scalar(0,0,255),2);

int theta = 30;
double radians = theta * PI / 180.0;            

double sin = abs(std::sin(radians));
double cos = abs(std::cos(radians));

int newWidth = (int) (frame.cols * cos + frame.rows * sin);
int newHeight = (int) (frame.cols * sin + frame.rows * cos);

cv::Mat targetMat(cv::Size(newWidth, newHeight), frame.type());

int offsetX = (newWidth - frame.cols) / 2;
int offsetY = (newHeight - frame.rows) / 2;

frame.copyTo(targetMat.rowRange(offsetY, offsetY + frame.rows).colRange(offsetX, offsetX + frame.cols));

cv::Point2f src_center(targetMat.cols/2.0F, targetMat.rows/2.0F);
cv::Mat rot_mat = cv::getRotationMatrix2D(src_center, theta, 1.0);
cv::warpAffine(targetMat, frameRotated, rot_mat, targetMat.size());

imshow("frame", frame); 
imshow("rotated frame", frameRotated);  

编辑

假设我在旋转后的图像中有一个点,如何使用旋转矩阵在原始图像中得到相应的点?

最佳答案

你只需要使用rot_mat 来变换矩形的原始中心。我测试了以下并且它有效:

cv::Rect r(250, 350, 20, 30);
cv::Point2d c(r.x + r.width / 2, r.y + r.height / 2);
// c is center of rect

// get c's location in targetMat when frame is copied
c.x += offsetX;  
c.y += offsetY;


int theta = 30;
double radians = theta * M_PI / 180.0;            

cv::Point2d src_center(targetMat.cols/2.0F, targetMat.rows/2.0F);
cv::Mat rot_mat = cv::getRotationMatrix2D(src_center, theta, 1.0);

// now transform point using rot_mat
double *x = rot_mat.ptr<double>(0);
double *y = rot_mat.ptr<double>(1);
Point2d dst(x[0] * c.x + x[1] * c.y + x[2], 
            y[0] * c.x + y[1] * c.y + y[2]);
// dst is center of transformed rect

编辑

要从旋转的图像中转换一个点,您只需要反转这个过程:

// undo translation
Point2d dst1(dst.x - x[2], dst.y - y[2]); 

// undo rotation
Point2d dst2(x[0] * dst1.x - x[1] * dst1.y, -y[0] * dst1.x + y[1] * dst1.y); 

// undo shift
Point2d in_unrotated_image(dst2.x - offsetX, dst2.y - offsetY); 

关于opencv - 旋转 cv::Rect 的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19786333/

相关文章:

c++ - 平滑运动参数

jquery - 暂停进度条以及 div 旋转

linux - 设置 HLS 分段时间

python - 如何在python中重新对齐图像片段?

jquery - CSS3 旋转替代方案?

c# - 使用 Kinect SDK 创建完整的 3d 骨架

html - 如何在有文字的矩形内制作一个小正方形?

php - 将多个相邻的矩形合并为一个多边形

java - 检测到碰撞后如何处理

java - 在 OpenCV 3.2 中返回 Java 中的 Mat 对象