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
Merge requests
!8
Resolve "follow core:#313"
代码
评审变更
检出分支
下载
补丁
文本差异
Merged
Resolve "follow core:#313"
8-follow-core-313
into
devel
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Joan Solà Ortega
requested to merge
8-follow-core-313
into
devel
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
Closes
#8 (closed)
Edited
4 years ago
by
Joan Solà Ortega
0
0
Merge request reports
Compare
devel
devel (base)
and
latest version
latest version
8b260022
1 commit,
4 years ago
2 files
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
test/gtest_factor_force_torque.cpp
+
1
−
1
Options
@@ -151,7 +151,7 @@ void perturbateAllIfUnFixed(const FrameBasePtr& KF)
FrameBasePtr
createKFWithCDLI
(
const
ProblemPtr
&
problem
,
const
TimeStamp
&
t
,
VectorComposite
x_origin
,
Vector3d
c
,
Vector3d
cd
,
Vector3d
Lc
,
Vector6d
bias_imu
)
{
FrameBasePtr
KF
=
FrameBase
::
emplace
KeyFrame
<
FrameBase
>
(
problem
->
getTrajectory
(),
t
,
"POV"
,
x_origin
);
FrameBasePtr
KF
=
FrameBase
::
emplace
<
FrameBase
>
(
problem
->
getTrajectory
(),
t
,
"POV"
,
x_origin
);
StateBlockPtr
sbc
=
make_shared
<
StateBlock
>
(
c
);
KF
->
addStateBlock
(
'C'
,
sbc
,
problem
);
StateBlockPtr
sbd
=
make_shared
<
StateBlock
>
(
cd
);
KF
->
addStateBlock
(
'D'
,
sbd
,
problem
);
StateBlockPtr
sbL
=
make_shared
<
StateBlock
>
(
Lc
);
KF
->
addStateBlock
(
'L'
,
sbL
,
problem
);
Loading