diff --git a/demos/mcapi_povcdl_estimation.cpp b/demos/mcapi_povcdl_estimation.cpp index 22b01ece0eb24b46e2d285f7d1a5417792a2e0ec..d48c67e50dfe816816e028f556d044e313ea2972 100644 --- a/demos/mcapi_povcdl_estimation.cpp +++ b/demos/mcapi_povcdl_estimation.cpp @@ -512,7 +512,7 @@ int main (int argc, char **argv) { // SETPRIOR RETRO-ENGINEERING // We are not using setPrior because of processors initial captures problems so we have to // - Manually create the first KF and its pose and velocity priors - // - call setOrigin on processors isMotion since the flag prior_is_set is not true when doing installProcessor (later) + // - call setOrigin on processors MotionProvider since the flag prior_is_set is not true when doing installProcessor (later) TimeStamp t0(t_arr[0]); VectorXd x_origin; x_origin.resize(19); x_origin << p_ob_gtr_v[0], q_ob_gtr_v[0], v_ob_gtr_v[0], c_traj_arr[0], dc_traj_arr[0], L_traj_arr[0]; diff --git a/demos/solo_real_pov_estimation.cpp b/demos/solo_real_pov_estimation.cpp index 7e58880f92b1a655ae7fb2f5810db2708c657e4f..51ade73abcc7638ae11f204f1cf338acb3bf75e2 100644 --- a/demos/solo_real_pov_estimation.cpp +++ b/demos/solo_real_pov_estimation.cpp @@ -298,7 +298,7 @@ int main (int argc, char **argv) { // SETPRIOR RETRO-ENGINEERING // We are not using setPrior because of processors initial captures problems so we have to // - Manually create the first KF and its pose and velocity priors - // - call setOrigin on processors isMotion since the flag prior_is_set is not true when doing installProcessor (later) + // - call setOrigin on processors MotionProvider since the flag prior_is_set is not true when doing installProcessor (later) VectorComposite x_origin("POV", {w_p_wm, w_qvec_wm, Vector3d::Zero()}); VectorComposite std_origin("POV", {std_prior_p*Vector3d::Ones(), std_prior_o*Vector3d::Ones(), std_prior_v*Vector3d::Ones()}); diff --git a/demos/solo_real_povcdl_estimation.cpp b/demos/solo_real_povcdl_estimation.cpp index de47de0a52c62ea13a46a3233c1e6a6b88d1f8be..ffdcd3f6ad5699566f86dc62acd02daec53aa592 100644 --- a/demos/solo_real_povcdl_estimation.cpp +++ b/demos/solo_real_povcdl_estimation.cpp @@ -314,7 +314,7 @@ int main (int argc, char **argv) { // SETPRIOR RETRO-ENGINEERING // We are not using setPrior because of processors initial captures problems so we have to // - Manually create the first KF and its pose and velocity priors - // - call setOrigin on processors isMotion since the flag prior_is_set is not true when doing installProcessor (later) + // - call setOrigin on processors MotionProvider since the flag prior_is_set is not true when doing installProcessor (later) MatrixXd P_origin(9,9); P_origin.setIdentity(); P_origin.block<3,3>(0,0) = pow(std_prior_p, 2) * Matrix3d::Identity(); diff --git a/test/gtest_processor_force_torque_preint.cpp b/test/gtest_processor_force_torque_preint.cpp index f5e52ebe116218b87384e74bbeb81db771d0d437..87b212e0f6bfc631d79f914c984b9676daaffbf8 100644 --- a/test/gtest_processor_force_torque_preint.cpp +++ b/test/gtest_processor_force_torque_preint.cpp @@ -222,7 +222,7 @@ public: // SETPRIOR RETRO-ENGINEERING // We are not using setPrior because of processors initial captures problems so we have to // - Manually set problem prior - // - call setOrigin on processors isMotion + // - call setOrigin on processors MotionProvider setOriginState(); MatrixXd P_origin_ = pow(1e-3, 2) * MatrixXd::Identity(18,18); KF1_ = problem_->emplaceFrame( t0_, x_origin_);