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

ekf_localization_node system model when fusing IMU and Odometry

asked 2016-05-06 18:47:55 -0500

murdock gravatar image

updated 2016-05-11 02:14:58 -0500

Hello,

I have found this great tutorial about Extended Kalman filter which made me wonder how does ekf_localization_node in ROS work (I found a similar question asked before, however it was not answered).

Firstly, Id like to understand model system of my robot (in this case, I am using Jackal robot which is originally a tank-like robot. However, with the help of teb_local_planner it was possible to limit the minimum turning radius and make it move more like a car. The purpose of ekf_localization_node in my case is just to fuse Odometry and IMU data, but how does it work? What is my system model in this case?

One more question regarding ekf_localization_node. I have read that EKF (in general) is capable of adding bias of a sensor. I havent found a parameter in the wiki regarding it. How does one smoothen sensor measurement noise then?

I have read couple of papers regarding model system, or in this case motion system (since its odometry?).

image description

Is this what I am using? Am I looking the right way?

Clearly, I am a noobie here so any help is appreciated!

EDIT One more question. So I know my current kinematic model, but what is my system's observation model then? When I look at the code, I am focusing at this area (lines 109-144) where it builds the measurement matrices but how? What does it use to build it?

 for (size_t i = 0; i < updateSize; ++i)
{
  measurementSubset(i) = measurement.measurement_(updateIndices[i]);
  stateSubset(i) = state_(updateIndices[i]);

  for (size_t j = 0; j < updateSize; ++j)
  {
    measurementCovarianceSubset(i, j) = measurement.covariance_(updateIndices[i], updateIndices[j]);
  }

  // Handle negative (read: bad) covariances in the measurement. Rather
  // than exclude the measurement or make up a covariance, just take
  // the absolute value.
  if (measurementCovarianceSubset(i, i) < 0)
  {
    FB_DEBUG("WARNING: Negative covariance for index " << i <<
             " of measurement (value is" << measurementCovarianceSubset(i, i) <<
             "). Using absolute value...\n");

    measurementCovarianceSubset(i, i) = ::fabs(measurementCovarianceSubset(i, i));
  }

  // If the measurement variance for a given variable is very
  // near 0 (as in e-50 or so) and the variance for that
  // variable in the covariance matrix is also near zero, then
  // the Kalman gain computation will blow up. Really, no
  // measurement can be completely without error, so add a small
  // amount in that case.
  if (measurementCovarianceSubset(i, i) < 1e-9)
  {
    FB_DEBUG("WARNING: measurement had very small error covariance for index " << updateIndices[i] <<
             ". Adding some noise to maintain filter stability.\n");

    measurementCovarianceSubset(i, i) = 1e-9;
  }
}
edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
2

answered 2016-05-08 20:14:16 -0500

Tom Moore gravatar image

updated 2016-05-11 05:30:53 -0500

Re: the kinematic model, see this answer:

http://answers.ros.org/question/22183...

The filter is pretty generic, which is by design. It's definitely on my list to move to a plugin-based architecture so that users can select from a number of different kinematic models. Also, yes, filters can estimate biases in sensor data, which is also something I plan to implement.

EDIT: The measurement model in a Kalman filter is meant to project the state into measurement space. Many sensors don't directly measure the quantity you want (e.g., altitude), but instead measure some other quantity (e.g., pressure) from which you can derive what you want. The measurement model is there to "convert" the current vehicle state into a measurement so that you can directly compute the innovation (error) between the two.

For the EKF in r_l, all of the measurements we receive are already in the same space as the state, i.e., we are directly measuring vehicle velocity, rather than some other quantity. So for us, the H matrix is just the identity matrix. However, we can use it for one other purpose, which is to limit which variables are affected in the state when we perform the Kalman gain computation and apply it. This is useful for one of the filter's key features: updating subsets of the state vector. Otherwise, every single measurement would have to have every variable in the state vector. Instead, we can take in different measurements from sensors that only measure some subset of the state variables.

edit flag offensive delete link more

Comments

Oh thanks! I definitely used ROS search but it didnt show me that one. Thanks for the edit! Much appreciated!

murdock gravatar image murdock  ( 2016-05-09 13:23:23 -0500 )edit

@Tom Moore, what If I used ekf_localization_node (to fuse IMU + Odom) and then provide that fused data to amcl? It should technically provide better data rather than just using amcl. However, what does robot_pose_ekf do then?

murdock gravatar image murdock  ( 2016-05-15 10:59:18 -0500 )edit

r_l is a drop-in replacement for robot_pose_ekf, so you wouldn't use both. In any case, running ekf_localization_node and fusing IMU and wheel odometry to generate the odom->base_link transform, with amcl generating the map->odom transform, should work fine.

Tom Moore gravatar image Tom Moore  ( 2016-05-30 05:31:23 -0500 )edit
1

answered 2016-05-08 16:36:24 -0500

IanCol gravatar image

To answer the question of how it works, I will provide some sources to look into. The Kalman filter when used for localization is typical in robotics.

Textbook with chapter on ekf localization

Also, if you have access to a university library, the following book is quite good: Principles of Robotic Motion: Theory, Algorithms, and Implementation. MIT Press, Cambridge, MA, 2004.

Since the robot was build and provided ROS ready, the kinematic model and measurement model is likely already tuned by Clearpath robotics. I doubt you would want to change anything there, although I'm not sure how to actually gets your hands on it. Perhaps an email to Clearpath could be an option if nothing is mentioned in the documentation or user manuals.

Regarding the bias question: I'm not familiar with the ekf node in ROS but EKFs in general fuse data based on the measurement model of the system. If one sensor is more noisy (higher covariance) than the other, then the estimation of the robot state will be biased towards using the information from the better sensor. Again, since Clearpath built the robot, they likely already tuned the measurement model based on the hardware specs of the IMU and encoders.

Unfortunately I couldn't give you any direct answers but I hope this helps.

edit flag offensive delete link more

Comments

Thanks for that book. So far Ive only referred to my one and only bible "Probabilistic robotics".

murdock gravatar image murdock  ( 2016-05-09 13:35:01 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2016-05-06 18:47:55 -0500

Seen: 1,566 times

Last updated: May 11 '16