当前位置:   article > 正文

AIGC笔记--关节点6D位姿按比例融合

AIGC笔记--关节点6D位姿按比例融合

1--核心代码

        6D位姿一般指平移向量和旋转向量,Maya软件中关节点的6D位姿指的是相对平移向量欧拉旋转向量

        为了按比例融合两个Pose,首先需要将欧拉旋转向量转换为旋转矩阵,在将旋转矩阵转换为四元数,利用球面线性插值实现Pose的融合,融合后的四元数需要重新转换为欧拉旋转向量,整个流程如下:欧拉旋转向量→旋转矩阵→四元数→球面线性插值→旋转矩阵→欧拉旋转向量

  1. '''
  2. @File : fusion6DPose.py
  3. @Time : 2024/03/14 17:08:00
  4. @Author : Jinfu Liu
  5. @Version : 1.0
  6. @Desc : fusion 6DPose between two motion
  7. '''
  8. import numpy as np
  9. from scipy.spatial.transform import Rotation
  10. from pyquaternion import Quaternion
  11. def fusion6DPose(pose1:np.ndarray, pose2:np.ndarray, rate:float) -> np.ndarray:
  12. '''
  13. 按比例融合平移向量和欧拉旋转向量
  14. '''
  15. assert pose1.shape[0] == pose2.shape[0]
  16. return_pose = np.zeros_like(pose1) # [num_joint, 6]
  17. for joint_idx in range(pose1.shape[0]): # 遍历处理所有关节点
  18. T1 = pose1[joint_idx][:3] # 平移向量
  19. R1 = pose1[joint_idx][3:] # 欧拉旋转
  20. T2 = pose2[joint_idx][:3] # 平移向量
  21. R2 = pose2[joint_idx][3:] # 欧拉旋转
  22. R1 = Rotation.from_euler('xyz', list(R1), degrees=True).as_matrix() # 欧拉角->旋转矩阵
  23. R2 = Rotation.from_euler('xyz', list(R2), degrees=True).as_matrix()
  24. T3 = rate * T1 + (1 - rate) * T2
  25. Q1 = Rotation.from_matrix(R1).as_quat() # 旋转矩阵->四元数
  26. Q2 = Rotation.from_matrix(R2).as_quat()
  27. Q3 = Quaternion.slerp(Quaternion(Q1), Quaternion(Q2), 1-rate) # 球面线性插值
  28. R3 = Rotation.from_quat(Q3.elements).as_matrix() # 四元数->旋转矩阵
  29. R3 = Rotation.from_matrix(R3).as_euler('xyz', degrees = True) # 旋转矩阵->欧拉角
  30. return_pose[joint_idx][:3] = T3
  31. return_pose[joint_idx][3:] = R3
  32. return return_pose
  33. if __name__ == "__main__":
  34. # 关节点的6D位姿
  35. pose1 = np.array([[1.208, -1.038, 95.552, 142.537, -84.184, -136.806]]) # Tx, Ty, Tz, Rx, Ry, Rz
  36. # 关节点的6D位姿
  37. pose2 = np.array([[0, -0.764, 95.771, -71.97, -97.655, 42.773]]) # Tx, Ty, Tz, Rx, Ry, Rz
  38. # 融合比例
  39. alpha = 0.5
  40. # 计算融合后的刚体C的6D位姿
  41. # Pose3 = rate * pose1 + (1 - rate) * Pose2
  42. Pose3 = fusion6DPose(pose1, pose2, alpha) # 这里只用一个关节点进行测试
  43. # 融合后
  44. print("PoseC: ", Pose3) # [[0.604, -0.901, 95.6615, 124.11717241, -83.2593501, -135.84186147]]
  45. print("All done!")

2--Maya验证

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/259874
推荐阅读
相关标签
  

闽ICP备14008679号