Skip to content
Snippets Groups Projects
Commit ad705126 authored by Joan Solà Ortega's avatar Joan Solà Ortega
Browse files

Small doc fix

parent 7c4ee857
No related branches found
No related tags found
1 merge request!243Constraint prior sensor params
Pipeline #2498 passed
......@@ -21,7 +21,7 @@ void ProcessorOdom2D::computeCurrentDelta(const Eigen::VectorXs& _data, const Ei
assert(_data_cov.rows() == data_size_ && "Wrong _data_cov size");
assert(_data_cov.cols() == data_size_ && "Wrong _data_cov size");
// data is [dtheta, dr]
// data is [dr, dtheta]
// delta is [dx, dy, dtheta]
// motion model is 1/2 turn + straight + 1/2 turn
_delta(0) = cos(_data(1) / 2) * _data(0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment