Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
imu
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
imu
Merge requests
!44
Resolve "Adapt to const nonconst new API"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Adapt to const nonconst new API"
25-adapt-to-const-nonconst-new-api
into
devel
Overview
0
Commits
3
Pipelines
0
Changes
10
Merged
Joan Vallvé Navarro
requested to merge
25-adapt-to-const-nonconst-new-api
into
devel
3 years ago
Overview
0
Commits
3
Pipelines
0
Changes
10
Expand
Closes
#25 (closed)
Edited
3 years ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Compare
devel
version 2
a643bb80
3 years ago
version 1
1c4e6088
3 years ago
devel (base)
and
latest version
latest version
122cff55
3 commits,
3 years ago
version 2
a643bb80
2 commits,
3 years ago
version 1
1c4e6088
1 commit,
3 years ago
10 files
+
22
−
33
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
include/imu/factor/factor_imu.h
+
2
−
2
Options
@@ -478,8 +478,8 @@ inline bool FactorImu::residual(const Eigen::MatrixBase<D1> & _p1,
inline
Eigen
::
VectorXd
FactorImu
::
expectation
()
const
{
FrameBasePtr
frm_current
=
getFeature
()
->
getFrame
();
FrameBasePtr
frm_previous
=
getFrameOther
();
auto
frm_current
=
getFeature
()
->
getFrame
();
auto
frm_previous
=
getFrameOther
();
//get information on current_frame in the FactorImu
const
Eigen
::
Vector3d
frame_current_pos
=
(
frm_current
->
getP
()
->
getState
());
Loading