- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我已经根据它的 hardware specs 为 Baxter ARM 机器人组合了这个正向运动学函数。以及以下关节轴:
以下正向运动学的关节位置与相应的笛卡尔坐标不匹配,我在这里做错了什么?
def FK_function_2(joints):
def yaw(theta): #(rotation around z)
y = np.array([[np.cos(theta), -np.sin(theta), 0],
[np.sin(theta), np.cos(theta), 0],
[0, 0, 1] ])
return y
R01 = yaw(joints[0]).dot(np.array([[-1, 0, 0],
[0, 0, 1],
[0, 1, 0]]))
R12 = yaw(joints[1]).dot(np.array([[0, 0, -1],
[-1, 0, 0],
[0, 1, 0]]))
R23 = yaw(joints[2]).dot(np.array([[-1, 0, 0],
[0, 0, 1],
[0, 1, 0]]))
R34 = yaw(joints[3]).dot(np.array([[-1, 0, 0],
[0, 0, 1],
[0, 1, 0]]))
R45 = yaw(joints[4]).dot(np.array([[-1, 0, 0],
[0, 0, 1],
[0, 1, 0]]))
R56 = yaw(joints[5]).dot(np.array([[-1, 0, 0],
[0, 0, 1],
[0, 1, 0]]))
R67 = yaw(joints[6]).dot(np.array([[1, 0, 0],
[0, 1, 0],
[0, 0, 1]]))
d = np.array([0.27035, 0, 0.36435, 0, 0.37429, 0, 0.229525])
a = np.array([0.069, 0, 0.069, 0, 0.010, 0, 0])
l1 = np.array([a[0]*np.cos(joints[0]), a[0]*np.sin(joints[0]), d[0]]);
l2 = np.array([a[1]*np.cos(joints[1]), a[1]*np.sin(joints[1]), d[1]]);
l3 = np.array([a[2]*np.cos(joints[2]), a[2]*np.sin(joints[2]), d[2]]);
l4 = np.array([a[3]*np.cos(joints[3]), a[3]*np.sin(joints[3]), d[3]]);
l5 = np.array([a[4]*np.cos(joints[4]), a[4]*np.sin(joints[4]), d[4]]);
l6 = np.array([a[5]*np.cos(joints[5]), a[5]*np.sin(joints[5]), d[5]]);
l7 = np.array([a[6]*np.cos(joints[6]), a[6]*np.sin(joints[6]), d[6]]);
unit = np.array([0, 0, 0, 1])
H0 = np.concatenate((np.concatenate((R01, l1.reshape(3, 1)), axis=1), unit.reshape(1,4)), axis=0)
H1 = np.concatenate((np.concatenate((R12, l2.reshape(3, 1)), axis=1), unit.reshape(1,4)), axis=0)
H2 = np.concatenate((np.concatenate((R23, l3.reshape(3, 1)), axis=1), unit.reshape(1,4)), axis=0)
H3 = np.concatenate((np.concatenate((R34, l4.reshape(3, 1)), axis=1), unit.reshape(1,4)), axis=0)
H4 = np.concatenate((np.concatenate((R45, l5.reshape(3, 1)), axis=1), unit.reshape(1,4)), axis=0)
H5 = np.concatenate((np.concatenate((R56, l6.reshape(3, 1)), axis=1), unit.reshape(1,4)), axis=0)
H6 = np.concatenate((np.concatenate((R67, l7.reshape(3, 1)), axis=1), unit.reshape(1,4)), axis=0)
T = H0.dot(H1).dot(H2).dot(H3).dot(H4).dot(H5).dot(H6)
return T[0:3, 3]
最佳答案
好的,所以我一直在看这个并检查了你的代码。该代码很好,可与您定义的运动链配合使用,并从机械臂的底部到末端进行转换。
(H0 * H1 * H2 * H3 * H4 * H5 * H6) 是正确的运动链,其中每个都代表从 ARM 底部开始的链中从一个关节到下一个关节的转换。
问题是你的转换是错误的。您对 H0 到 H6 的表示不正确,正是这些矩阵中的数字导致您的转换与发生的实际转换不匹配。您需要从底部一直到 ARM 末端进行正确的转换。除此之外,你的方法是正确的。
看起来您正在为转换矩阵使用正常的 DH 参数。您的 a 和 d(以及未在您的代码中显示的 alpha)的值已关闭并导致转换的表达不正确。 DH 参数见 https://en.wikipedia.org/wiki/Denavit%E2%80%93Hartenberg_parameters .
在浏览修改后的 DH 表以设置转换后,我找到了 Baxter 正向运动学的精确指南以提供帮助。我会在上面的 wiki 文章末尾查看修改后的 DH 参数,因为该指南使用了该参数。
百特正向运动学指南: https://www.ohio.edu/mechanical-faculty/williams/html/pdf/BaxterKinematics.pdf
在本文中,作者 Robert Williams 为 Baxter 机械臂设置了 DH 参数,并获得了与您所拥有的值不同的值(我知道您使用的是正常的 DH 参数,但我会考虑使用修改后的参数)。他的表是:
长度为:
并使用修改后的 DH 矩阵:
现在您可以计算矩阵 H0 到 H6,如果需要,您还可以添加末端效应器几何形状,如果您有额外的 H7。一旦将它们全部组合在一起,您应该获得正确的正向运动学转换(有关其他资源,请参阅论文)。左右臂具有相同的运动学。
当你将它们相乘时,你会得到 x7、y7 和 z7 坐标的表达式,从 ARM 的底部开始,这些表达式是关节旋转和机器人 ARM 几何形状的函数。有关 x7、y7 和 z7 的表达式,请参阅第 17 页上的论文。另请参阅第 14 页了解各个转换。
另外不要忘记以弧度表示角度,因为您的代码使用常规三角函数。
最后更新:
我只记得我更容易一个一个地思考中间平移和旋转步骤(而不是直接跳到 DH 矩阵)。这两种方法是等效的,但我喜欢考虑从一个旋转框架到下一个旋转框架所需的每个单独步骤。
为此,您可以使用这些构建块。
纯译:
[1 0 0 u;
0 1 0 v;
0 0 1 w;
0 0 0 1]
[cos(theta) -sin(theta) 0 0;
sin(theta) cos(theta) 0 0;
0 0 1 0;
0 0 0 1]
R_x(alpha) = [1 0 0 0;
0 cos(alpha) -sin(alpha) 0;
0 sin(alpha) cos(alpha) 0;
0 0 0 1];
R_y(beta) = [ cos(beta) 0 sin(beta) 0;
0 1 0 0;
-sin(beta) 0 cos(beta) 0;
0 0 0 1];
[cos(gamma) -sin(gamma) 0 0;
sin(gamma) cos(gamma) 0 0;
0 0 1 0;
0 0 0 1]
关于python - Baxter 的正向运动学,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47102736/
我是一名优秀的程序员,十分优秀!