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

What is the /odom topic?

asked 2020-01-22 22:38:53 -0500

kane_choigo gravatar image

updated 2020-01-22 22:39:59 -0500

Hello, I'm working on ROS kinetic in Ubuntu 16.04.

I have a simple question; what is the /odom topic?

Of course I know it represents the pose of mobile robot at every time, but

is /odom topic the result of localization?

When I launch amcl node with my robot, in this case,

is it ok if i adopt /odom as the robot's localized state by like EKF or UKF?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-01-23 02:54:44 -0500

mgruhler gravatar image

The odom topic represents more then just the "pose" of the mobile robot. If you check the message definition of nav_msgs/Odometry (which is usually used for this kind of message), you see that it also contains the current velocity, as well as the respective uncertainties.

Typically, the odometry describes the "internal" state of the robot, i.e. the integrated position using wheel encoders and, potentially with fused IMU or other sensors measuring internal state. Often it is also used when you fuse a GNSS sensor. Obviously, then you get more in the direction of a localization system then only tracking internal state (see the wiki for this).

About amcl, though... amcl neither subscribes nor publishes the odom topic (as per the wiki). So the answer to

is it ok if i adopt /odom as the robot's localized state

would be no. Seems the odom topic comes from somewhere else. You can use the amcl_pose topic for that, or use the published transform.

edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2020-01-22 22:38:53 -0500

Seen: 6,944 times

Last updated: Jan 23 '20