Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef CARTOGRAPHER_MAPPING_INTERNAL_3D_SCAN_MATCHING_ROTATIONAL_SCAN_MATCHER_H_
00018 #define CARTOGRAPHER_MAPPING_INTERNAL_3D_SCAN_MATCHING_ROTATIONAL_SCAN_MATCHER_H_
00019
00020 #include <vector>
00021
00022 #include "Eigen/Geometry"
00023 #include "cartographer/sensor/point_cloud.h"
00024
00025 namespace cartographer {
00026 namespace mapping {
00027 namespace scan_matching {
00028
00029 class RotationalScanMatcher {
00030 public:
00031
00032
00033
00034 static Eigen::VectorXf RotateHistogram(const Eigen::VectorXf& histogram,
00035 float angle);
00036
00037
00038 static Eigen::VectorXf ComputeHistogram(const sensor::PointCloud& point_cloud,
00039 int histogram_size);
00040
00041 explicit RotationalScanMatcher(const Eigen::VectorXf* histogram);
00042
00043
00044
00045
00046 std::vector<float> Match(const Eigen::VectorXf& histogram,
00047 float initial_angle,
00048 const std::vector<float>& angles) const;
00049
00050 private:
00051 const Eigen::VectorXf* histogram_;
00052 };
00053
00054 }
00055 }
00056 }
00057
00058 #endif // CARTOGRAPHER_MAPPING_INTERNAL_3D_SCAN_MATCHING_ROTATIONAL_SCAN_MATCHER_H_