[PCL]4 PCL中图像匹配的几个类图

[PCL]4 PCL中图像匹配的几个类图

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]4 PCL中图像匹配的几个类图

CorrespondenceEstimationBase相关类图:

[PCL]4 PCL中图像匹配的几个类图

相关文章:

  • 2021-04-22
  • 2021-11-26
  • 2021-12-10
  • 2022-12-23
  • 2021-07-03
  • 2021-11-08
  • 2022-12-23
猜你喜欢
  • 2021-07-08
  • 2022-02-16
  • 2021-11-07
  • 2022-02-06
  • 2021-04-26
  • 2022-12-23
  • 2021-04-19
相关资源
相似解决方案