首页 > 其他 > 详细

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

时间:2016-03-02 12:37:33      阅读:325      评论:0      收藏:0      [点我收藏+]

技术分享

技术分享

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

原文:http://www.cnblogs.com/yhlx125/p/4924283.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!