码迷,mamicode.com
首页 > 其他好文 > 详细

ICP(IterativeClosestPoint)

时间:2017-03-12 16:48:30      阅读:875      评论:0      收藏:0      [点我收藏+]

标签:define   nes   add   tcl   bsp   参考   strong   reg   ror   

含义:

 

 

The resultant transformation is optimized as a quaternion.

The algorithm has several termination criteria:(终止条件)

    1. Number of iterations has reached the maximum user imposed number of iterations (via setMaximumIterations)
    2. The epsilon (difference) between the previous transformation and the current estimated transformation is smaller than an user imposed value (via setTransformationEpsilon)
    3. The sum of Euclidean squared errors is smaller than a user defined threshold (via setEuclideanFitnessEpsilon)
  • ICP优化步骤,既可以用于局部几何特征不变描述算子中也可以用于全局几何特征不变描述算子。

文献:

 

用法:

 

  • 是一种匹配算法,较常用于配准。主要是用来寻找一个点云和另个点云的最佳变换关系,一般是点和点的匹配,让两个点云近似的去重合,它会不断的对齐点云去改进变换的效果,直到达到终止条件(最大迭代次数,距离或是误差范围)。
  • ICP通过迭代去更新结果,效果不错,但常常比较耗时。
  • ICP的各种改进算法,常见的ICP算法,如:
    • 点一线ICP匹配、
    • 线一线ICP匹配、
    • 线一面ICP匹配等。

 

 

 

参考:

  1. 基于ROS和点云库的室内三维物体识别与姿态估计_鄢武





ICP(IterativeClosestPoint)

标签:define   nes   add   tcl   bsp   参考   strong   reg   ror   

原文地址:http://www.cnblogs.com/jack-wangchong/p/6538098.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!