38 #ifndef PCL_SMOOTHEDSURFACESKEYPOINT_H_
39 #define PCL_SMOOTHEDSURFACESKEYPOINT_H_
54 template <
typename Po
intT,
typename Po
intNT>
72 neighborhood_constant_ (0.5f),
81 name_ =
"SmoothedSurfacesKeypoint";
117 float neighborhood_constant_;
118 std::vector<PointCloudTConstPtr> clouds_;
119 std::vector<PointCloudNTConstPtr> cloud_normals_;
120 std::vector<KdTreePtr> cloud_trees_;
122 std::vector<std::pair<float, size_t> > scales_;
127 compareScalesFunction (
const std::pair<float, size_t> &a,
128 const std::pair<float, size_t> &b) {
return a.first < b.first; }