Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
wolf
Merge requests
!448
Draft: Resolve "Implementation of new nodes creation"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Draft: Resolve "Implementation of new nodes creation"
454-implementation-of-new-nodes-creation
into
devel
Overview
2
Commits
456
Pipelines
461
Changes
1
Open
Joan Vallvé Navarro
requested to merge
454-implementation-of-new-nodes-creation
into
devel
3 years ago
Overview
2
Commits
456
Pipelines
461
Changes
1
Expand
Closes
#454
,
#318
,
#364
,
#449
,
#381
,
#376
,
#208
,
#485
Edited
11 months ago
by
Joan Vallvé Navarro
0
0
Merge request reports
Viewing commit
a4ffdc28
Prev
Next
Show latest version
1 file
+
3
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a4ffdc28
hotfix
· a4ffdc28
Joan Vallvé Navarro
authored
11 months ago
demos/hello_wolf/hello_wolf_autoconf.cpp
+
3
−
3
Options
@@ -224,7 +224,7 @@ int main()
// SOLVE with exact initial guess
WOLF_INFO
(
"======== SOLVE PROBLEM WITH EXACT PRIORS ======="
)
std
::
string
report
=
ceres
->
solve
(
ReportVerbosity
::
FULL
);
std
::
string
report
=
ceres
->
solve
(
SolverManager
::
ReportVerbosity
::
FULL
);
WOLF_INFO
(
report
);
// should show a very low iteration number (possibly 1)
problem
->
print
(
1
,
0
,
1
,
0
);
@@ -235,13 +235,13 @@ int main()
// SOLVE again
WOLF_INFO
(
"======== SOLVE PROBLEM WITH PERTURBED PRIORS ======="
)
report
=
ceres
->
solve
(
ReportVerbosity
::
FULL
);
report
=
ceres
->
solve
(
SolverManager
::
ReportVerbosity
::
FULL
);
WOLF_INFO
(
report
);
// should show a very high iteration number (more than 10, or than 100!)
problem
->
print
(
1
,
0
,
1
,
0
);
// GET COVARIANCES of all states
WOLF_INFO
(
"======== COVARIANCES OF SOLVED PROBLEM ======="
)
ceres
->
computeCovariances
(
CovarianceBlocksToBeComputed
::
ALL_MARGINALS
);
ceres
->
computeCovariances
(
SolverManager
::
CovarianceBlocksToBeComputed
::
ALL_MARGINALS
);
for
(
auto
&
kf_pair
:
problem
->
getTrajectory
()
->
getFrameMap
())
{
Eigen
::
MatrixXd
cov
;
Loading