PCL中图像匹配的几个类图

PCL中图像匹配的几个类图_第1张图片

PCL中图像匹配的几个类图_第2张图片

1   IterativeClosestPoint () 
2       {
3         reg_name_ = "IterativeClosestPoint";
4         ransac_iterations_ = 1000;
5         transformation_estimation_.reset (new pcl::registration::TransformationEstimationSVD<PointSource, PointTarget>);
6       };
1  IterativeClosestPointNonLinear ()
2       {
3         min_number_correspondences_ = 4;
4         reg_name_ = "IterativeClosestPointNonLinear";
5 
6         transformation_estimation_.reset (new pcl::registration::TransformationEstimationLM<PointSource, PointTarget>);
7       }

 PCL中图像匹配的几个类图_第3张图片

你可能感兴趣的:(PCL中图像匹配的几个类图)