如何平移旋转的 OpenCV 垫

发布于 2025-01-06 20:03:43 字数 735 浏览 0 评论 0原文

我正在编写一些代码,将 OpenCV Mat 旋转指定角度。使用下面的代码,我成功地围绕其中心旋转了Mat,但是由于图像不是正方形,旋转后的图像的中心不是新图像的中心,并且图像的一部分落在了外面新马特。

Point2f src_center(source.cols/2.0F, source.rows/2.0F);
Mat rot_mat = getRotationMatrix2D(src_center, angle, 1.0);

Mat final;

final.create(calculateHeight(source.cols, source.rows, angle), calculateWidth(source.cols, source.rows, angle), CV_32FC1);
warpAffine(source, final, rot_mat, final.size());

注意:calculateHeight和calculateWidth是根据原始Mat的尺寸和旋转角度简单确定新Mat的大小的方法。

示例:原始图像 旋转为:旋转图像

如何旋转垫子,使生成的旋转垫子在边界内居中?

I am writing some code that rotates an OpenCV Mat by a specified angle. Using the following code, I have successfully rotated the Mat around its center, but due to the fact that the image is not square, the center of the rotated image is not the center of the new image, and part of the image falls outside of the new Mat.

Point2f src_center(source.cols/2.0F, source.rows/2.0F);
Mat rot_mat = getRotationMatrix2D(src_center, angle, 1.0);

Mat final;

final.create(calculateHeight(source.cols, source.rows, angle), calculateWidth(source.cols, source.rows, angle), CV_32FC1);
warpAffine(source, final, rot_mat, final.size());

Note: calculateHeight and calculateWidth are methods that simply determine the size of the new Mat based on the dimensions of the original Mat and the angle that it is being rotated.

Example: Original image rotates to: rotated image

How do I rotate the Mat in such a way that the resulting rotated Mat is centered within the boundaries?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗恋未遂 2025-01-13 20:03:43

只需将要旋转的图像复制到足够大的新图像的中心并旋转新图像即可。

Just copy the image you want to rotate to the center of a big enough new image and rotate the new image.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文