Skip to content
Snippets Groups Projects
Commit 9a907a7c authored by Andrea Censi's avatar Andrea Censi
Browse files

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
...@@ -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
......
...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment