Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef GICP_FALLBACK_H_
00026 #define GICP_FALLBACK_H_
00027
00028 #include <pcl/registration/icp.h>
00029 #include <pcl/registration/registration.h>
00030 #include <Eigen/Core>
00031 #include "parameter_server.h"
00032
00033
00034 void saveCloud(const char* filename, const pointcloud_type& pc, const int max_cnt = 10000, const bool color = false);
00035
00036 void downSample(const pointcloud_type& src, pointcloud_type& to);
00037
00038 bool gicpfallback(const pointcloud_type& from, const pointcloud_type& to, Eigen::Matrix4f& transform);
00039
00040
00041
00042 #endif