Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
csm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
labrobotica
algorithms
csm
Commits
9a907a7c
Commit
9a907a7c
authored
10 years ago
by
Andrea Censi
Browse files
Options
Downloads
Plain Diff
Merge pull request #6 from RainerKuemmerle/csm_eigen
fix linking of debug build (Rainer Kuemmerle)
parents
abfb6363
62450a2b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/csm/math_utils_gsl.h
+1
-1
1 addition, 1 deletion
src/csm/math_utils_gsl.h
src/icp/icp.cpp
+4
-4
4 additions, 4 deletions
src/icp/icp.cpp
with
5 additions
and
5 deletions
src/csm/math_utils_gsl.h
+
1
−
1
View file @
9a907a7c
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
/** Returns Fisher's information matrix. You still have to multiply
/** Returns Fisher's information matrix. You still have to multiply
it by (1/sigma^2). */
it by (1/sigma^2). */
val
ld_fisher0
(
LDP
ld
);
//
val ld_fisher0(LDP ld);
#endif
#endif
...
...
This diff is collapsed.
Click to expand it.
src/icp/icp.cpp
+
4
−
4
View file @
9a907a7c
...
@@ -155,15 +155,15 @@ void sm_icp(struct sm_params*params, struct sm_result*res) {
...
@@ -155,15 +155,15 @@ void sm_icp(struct sm_params*params, struct sm_result*res) {
res
->
dx_dy1_m
=
egsl_v2gslm
(
dx_dy1
);
res
->
dx_dy1_m
=
egsl_v2gslm
(
dx_dy1
);
res
->
dx_dy2_m
=
egsl_v2gslm
(
dx_dy2
);
res
->
dx_dy2_m
=
egsl_v2gslm
(
dx_dy2
);
if
(
0
)
{
//
if(0) {
//egsl_print("cov0_x", cov0_x);
//egsl_print("cov0_x", cov0_x);
//egsl_print_spectrum("cov0_x", cov0_x);
//egsl_print_spectrum("cov0_x", cov0_x);
val
fim
=
ld_fisher0
(
laser_ref
);
//
val fim = ld_fisher0(laser_ref);
egsl_print
(
"fim"
,
fim
);
//
egsl_print("fim", fim);
//val ifim = inv(fim);
//val ifim = inv(fim);
//egsl_print_spectrum("ifim", ifim);
//egsl_print_spectrum("ifim", ifim);
}
//
}
}
}
res
->
error
=
best_error
;
res
->
error
=
best_error
;
...
...
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