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

AMCL odom_alpha parameters

asked 2012-04-29 23:16:59 -0500

Cav gravatar image

Hi,

I'm currently trying to "fix" the localization on a known map with my car-like robot. I don't need it to be very accurate, "in about" will do. My current settings are as follows:

<param name="odom_alpha1" value="0.2"/>
<param name="odom_alpha2" value="0.3"/>
<param name="odom_alpha3" value="0.6"/>
<param name="odom_alpha4" value="0.4"/>

but since I'm not a robotics pro I have a hard time understanding what I need to tune in my case. Some info about my robot:

  • car-like robot, 4 wheels
  • I can control 2 wheels at a time (so either the left or the right side), making a turn means turning the left and the right side in opposite directions
  • the speed of the left and right side is usually a bit different, this means that the robot is not going straight forward but driving a small curve
  • I have a gyro that works pretty good, so that I can calculate yaw, BUT the speed is just an estimated value

If I understood it correctly odom_alpha1 is not very important for me, since the gyro gives me pretty good values.

odom_alpha2 whould "take care" of the drift mentioned in the 3rd bullet point, right?

odom_alpha3 corrects the forward movement?

and odom_alpha4 corrects the forward/backward movement, when making a turn.

Did I get it right? Which parameters I should work with, since my robot is still getting lost pretty often.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
8

answered 2012-04-30 19:40:16 -0500

TomTUM gravatar image

I think you got the interpretation of the values right.

First of all, you should tune the parameters using a bag file, since you can not do anything repeatable on a live system. Record the sensors and the odometry and watch what's happening in rviz playing the bag with amcl running.

Closely look at what happens to your PoseArray and see where and how the robot gets lost. If there is a displacement when the robot turns, it's odom_alpha4 etc.

"Too high" values are usually not a big problem since this will spread out the samples more and you still have a good one in the sampleset. If the values are too low, however, the actual pose of the robot will often not be reflected anymore by any of the samples. (never underestimate the error!)

So when in doubt, raise the values. On the PR2 for example the robot will still localize quite well when going from values between 0-1 to values around 10. It could use more up computation time though, since more samples will be used.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2012-04-29 23:16:59 -0500

Seen: 4,579 times

Last updated: Apr 30 '12