四元数转换为旋转平移矩阵

# 将translation和rotation转换为手眼矩阵
# 经验证,此程序可用
import numpy as np
from scipy.spatial.transform import Rotation

# Translation vector
translation = np.array([0.02111988839859031, -0.06686781041966289, 0.03838598336018828])

# Rotation quaternion
rotation_quaternion = np.array([-0.00176506715140691, 0.0016587793444772236, 0.38548107576385465, 0.922712562601145])

# Convert quaternion to rotation matrix
rotation = Rotation.from_quat(rotation_quaternion)
rotation_matrix = rotation.as_matrix()

# Construct hand-eye matrix
hand_eye_matrix = np.eye(4)
hand_eye_matrix[:3, :3] = rotation_matrix
hand_eye_matrix[:3, 3] = translation

print("Hand-Eye Matrix:")
print(hand_eye_matrix)

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值