Skip to content
Snippets Groups Projects
Commit 06284855 authored by Pep Martí Saumell's avatar Pep Martí Saumell
Browse files

Include guards

parent 1cc6ff58
No related branches found
No related tags found
1 merge request!1Resolve "icp: develop matching tools"
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
// #include <csm/csm_all.h> #ifndef ICP_H_
#define ICP_H_
#include <chrono> #include <chrono>
#include <random> #include <random>
#include "laser_scan.h" #include "laser_scan.h"
...@@ -13,7 +15,7 @@ struct icpOutput{ ...@@ -13,7 +15,7 @@ struct icpOutput{
Eigen::Vector3s res_transf; Eigen::Vector3s res_transf;
Eigen::Matrix3s res_covar; Eigen::Matrix3s res_covar;
int nvalid; /** Number of valid correspondence in the end */ int nvalid; /** Number of valid correspondence in the end */
double error; /** Total correspondence error */ double error; /** Total correspondence error */
}; };
struct icpParams{ struct icpParams{
......
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