码迷,mamicode.com
首页 > 编程语言 > 详细

ros Python 四元数转欧拉角

时间:2020-04-29 00:51:08      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:stream   euler   html   ret   ofo   参考   ++   http   https   

Python 版本
def to_euler_angles(w, x, y, z):
    """w、x、y、z to euler angles"""
    angles = {‘pitch‘: 0.0, ‘roll‘: 0.0, ‘yaw‘: 0.0}
    r = math.atan2(2*(w*x+y*z),1-2*(x*x+y*y))
    p = math.asin(2*(w*y-z*z))
    y = math.atan2(2*(w*z+x*y),1-2*(z*z+y*y))

    angles[‘roll‘] = r*180/math.pi
    angles[‘pitch‘] = p*180/math.pi
    angles[‘yaw‘] = y*180/math.pi

    return angles

C++ 版本

ROS中quaternion四元数和RPY欧拉角转换


参考:
ros python 四元数 转 欧拉角

ros Python 四元数转欧拉角

标签:stream   euler   html   ret   ofo   参考   ++   http   https   

原文地址:https://blog.51cto.com/laok8/2491298

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!