如何获取旋转后的图像区域?
例如我得到一张图片位置在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您想知道如果围绕对象的中心旋转对象,其边界框将如何变换。
如果原始盒子的宽度为 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