如何获取旋转后的图像区域?

发布于 2025-01-06 06:47:21 字数 159 浏览 0 评论 0原文

例如我得到一张图片位置在10,10,宽度为100,高度为120。我将其中心顺时针旋转20度,位置会更小,尺寸会更大,因为边缘会出来,但是如何我会计算它们的价值吗?

不确定我的问题是否足够清楚,如果我找到更好的方法来解释它,我会改变它。

尝试在 Android 中执行此操作

For example I got a picture position in 10,10 with width of 100 and height of 120. I centre rotated it clock-wise 20 degree, the position will be smaller and size will be bigger since the edge will be coming out, but how would I calculate the value for them?

No sure I made the question clear enough, will change it if I find a better way to explain it.

Trying to do this in Android

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

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

发布评论

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

评论(1

欢你一世 2025-01-13 06:47:21

我假设您想知道如果围绕对象的中心旋转对象,其边界框将如何变换。

如果原始盒子的宽度为 w,高度为 h,则旋转 r 后的新盒子的尺寸为:

wr = abs(sin(r)) * h + abs(cos(r)) * w
hr = 绝对值(sin(r)) * w + 绝对值(cos(r)) * h

I assume that you want to know how the bounding box of an object is transformed if you rotate it around its center.

If the original box has width w and height h, the new one, after rotation by r, has dimensions:

wr = abs(sin(r)) * h + abs(cos(r)) * w
hr = abs(sin(r)) * w + abs(cos(r)) * h

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