gpt4 book ai didi

c# - 如何从 C# 中的 3x3 单应矩阵获取旋转、平移、剪切

转载 作者:行者123 更新时间:2023-11-30 15:35:05 25 4
gpt4 key购买 nike

我计算了 3x3 单应矩阵,我需要获取旋转、平移、剪切和缩放以将它们用作 windows8 媒体元素属性中的参数?!

最佳答案

参见 https://math.stackexchange.com/questions/78137/decomposition-of-a-nonsquare-affine-matrix

def getComponents(normalised_homography):
'''((translationx, translationy), rotation, (scalex, scaley), shear)'''
a = normalised_homography[0,0]
b = normalised_homography[0,1]
c = normalised_homography[0,2]
d = normalised_homography[1,0]
e = normalised_homography[1,1]
f = normalised_homography[1,2]

p = math.sqrt(a*a + b*b)
r = (a*e - b*d)/(p)
q = (a*d+b*e)/(a*e - b*d)

translation = (c,f)
scale = (p,r)
shear = q
theta = math.atan2(b,a)

return (translation, theta, scale, shear)

关于c# - 如何从 C# 中的 3x3 单应矩阵获取旋转、平移、剪切,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15420693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com