其他分享
首页 > 其他分享> > ros学习(六):geometry_msgs消息类型

ros学习(六):geometry_msgs消息类型

作者:互联网

一、geometry_msgs/Pose 消息类型

http://docs.ros.org/en/melodic/api/geometry_msgs/html/msg/Pose.htmlicon-default.png?t=LBL2http://docs.ros.org/en/melodic/api/geometry_msgs/html/msg/Pose.html

# A representation of pose in free space, composed of position and orientation. 
# 在自由空间中姿态的代表,包括位置和朝向
Point position
Quaternion orientation

其中:

1.geometry_msgs/Point 

http://docs.ros.org/en/melodic/api/geometry_msgs/html/msg/Pose.htmlicon-default.png?t=LBL2http://docs.ros.org/en/melodic/api/geometry_msgs/html/msg/Pose.html

# This contains the position of a point in free space
# 在自由空间中的位置
float64 x
float64 y
float64 z

2.geometry_msgs/Quaternion

geometry_msgs/Quaternion Documentationicon-default.png?t=LBL2http://docs.ros.org/en/melodic/api/geometry_msgs/html/msg/Quaternion.html

# This represents an orientation in free space in quaternion form.
# 用四元数代表在自由空间中的朝向
float64 x
float64 y
float64 z
float64 w

标签:en,msgs,float64,geometry,html,ros
来源: https://blog.csdn.net/BIT_HXZ/article/details/122556863