ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You mean degrees probably

You need a quaternion to degrees conversion tool. Or use for instance the bullet class.

You mean degrees probably

You need a quaternion to degrees conversion tool. Or use for instance the bullet class.

edit:

  tf::Pose pose;
  tf::poseMsgToTF(odom->pose.pose, pose);
  double yaw_angle = tf::getYaw(pose.getRotation());

from here