0

我正在尝试围绕某个任意轴旋转和平移任意平面。出于测试目的,我编写了一个简单的 python 程序,它以在此处输入图像描述 度为单位围绕 X 轴旋转一个随机平面。

不幸的是,在检查平面之间的角度时,我得到了不一致的结果。这是代码:

def angle_between_planes(plane1, plane2):
    plane1 = (plane1 / np.linalg.norm(plane1))[:3]
    plane2 = (plane2/ np.linalg.norm(plane2))[:3]
    cos_a = np.dot(plane1.T, plane2) / (np.linalg.norm(plane1) * np.linalg.norm(plane2))
    print(np.arccos(cos_a)[0, 0])


def test():
    axis = np.array([1, 0, 0])
    theta = np.pi / 2
    translation = np.array([0, 0, 0])
    T = get_transformation(translation, axis * theta)
    for i in range(1, 10):
        source = np.append(np.random.randint(1, 20, size=3), 0).reshape(4, 1)
        target = np.dot(T, source)
        angle_between_planes(source, target)

它打印:

1.21297144225
1.1614420953
1.48042948278
1.10098697889
0.992418096794
1.16954303911
1.04180591409
1.08015300394
1.51949177153

调试此代码时,我看到转换矩阵是正确的,因为它表明它是 在此处输入图像描述

我不确定出了什么问题,并希望在这里提供任何帮助。

* 生成变换矩阵的代码为:

def get_transformation(translation_vec, rotation_vec):
    r_4 = np.array([0, 0, 0, 1]).reshape(1, 4)
    rotation_vec= rotation_vec.reshape(3, 1)
    theta = np.linalg.norm(rotation_vec)
    axis = rotation_vec/ theta
    R = get_rotation_mat_from_axis_and_angle(axis, theta)
    T = translation_vec.reshape(3, 1)
    R_T = np.append(R, T, axis = 1)
    return np.append(R_T, r_4, axis=0)



def get_rotation_mat_from_axis_and_angle(axis, theta):
    axis = axis / np.linalg.norm(axis)
    a, b, c = axis
    omct = 1 - np.cos(theta)
    ct = np.cos(theta)
    st = np.sin(theta)
    rotation_matrix =  np.array([a * a * omct + ct,  a * b * omct - c * st,  a * c * omct + b * st,
                                 a * b * omct + c * st, b * b * omct + ct,  b * c * omct - a * st,
                                 a * c * omct - b * st, b * c * omct + a * st, c * c * omct + ct]).reshape(3, 3)
    rotation_matrix[abs(rotation_matrix) < 1e-8] = 0
    return rotation_matrix
4

1 回答 1

0

您生成的source不是向量。为了成为一,它的第四个坐标应该为零。

您可以使用以下方法生成有效的:

source = np.append(np.random.randint(1, 20, size=3), 0).reshape(4, 1)

请注意,当您将代码粘贴到问题中时,无法对其进行测试:例如,vec = vec.reshape(3, 1)在以前任何地方都没有定义过的get_transformation用途中......vec

于 2018-09-24T12:08:00.350 回答