Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
bodydynamics
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
plugins
bodydynamics
Commits
27929ca1
Commit
27929ca1
authored
3 years ago
by
Joan Solà Ortega
Browse files
Options
Downloads
Patches
Plain Diff
Add unmeasured covariance to the features
parent
b17dec32
No related branches found
No related tags found
3 merge requests
!31
devel->main
,
!29
Add functionality for UAV
,
!27
Fix test with acc_x = 2 m/s2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/processor/processor_force_torque_inertial_preint_dynamics.cpp
+4
-2
4 additions, 2 deletions
...essor/processor_force_torque_inertial_preint_dynamics.cpp
with
4 additions
and
2 deletions
src/processor/processor_force_torque_inertial_preint_dynamics.cpp
+
4
−
2
View file @
27929ca1
...
...
@@ -75,13 +75,15 @@ CaptureMotionPtr ProcessorForceTorqueInertialPreintDynamics::emplaceCapture(cons
return
capture
;
}
FeatureBasePtr
ProcessorForceTorqueInertialPreintDynamics
::
emplaceFeature
(
CaptureMotionPtr
_capture_own
)
{
auto
motion
=
_capture_own
->
getBuffer
().
back
();
FeatureBasePtr
ftr
=
FeatureBase
::
emplace
<
FeatureMotion
>
(
_capture_own
,
"FeatureMotion"
,
motion
.
delta_integr_
,
motion
.
delta_integr_cov_
,
motion
.
delta_integr_cov_
+
unmeasured_perturbation_cov_
,
_capture_own
->
getCalibrationPreint
(),
motion
.
jacobian_calib_
);
return
ftr
;
...
...
@@ -344,7 +346,7 @@ void ProcessorForceTorqueInertialPreintDynamics::computeCurrentDelta(const Eigen
// !!!!!! Now J_delta_model seems to be calculated in function tangent2delta as J_delta_tangent * J_tangent_model
// !!!!!!!!!!!
// TODO: Check the calculation od the J_delta_model in fti::tangent2delta()
//
J_delta_model += J_delta_tangent * J_tangent_model;
J_delta_model
+=
J_delta_tangent
*
J_tangent_model
;
_jacobian_calib
<<
J_delta_bias
,
J_delta_model
;
// J_delta_calib = [J_delta_bias ; J_delta_model]
const
auto
&
J_delta_data
=
J_delta_tangent
*
J_tangent_data
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment