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

Make bias static by default

parent 830600b7
No related branches found
No related tags found
2 merge requests!54devel->main,!53Resolve "Remove bias drift from FactorImu"
......@@ -37,10 +37,10 @@ SensorImu2d::SensorImu2d(const Eigen::VectorXd& _extrinsics, const ParamsSensorI
std::make_shared<StatePoint2d>(_extrinsics.head(2), true, false),
std::make_shared<StateAngle>(_extrinsics(2), true, false),
std::make_shared<StateParams3>(Vector3d::Zero(3), false),
(Eigen::Vector3d() << _params.a_noise, _params.a_noise, _params.w_noise).finished(),
Eigen::Vector3d(_params.a_noise, _params.a_noise, _params.w_noise),
false,
false,
true),
false),
a_noise(_params.a_noise),
w_noise(_params.w_noise),
ab_initial_stdev(_params.ab_initial_stdev),
......
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