FPFH+ICP点云配准


A, UniformSampling降噪

B, ISS计算关键点, FPFH特征
在FeatureCloud::setInputCloud中读入点云,并调用processInput进行处理:
processInput处理包括: 
 1,  computeSurfaceNormals ()  
使用NormalEstimation计算得到表面法向量
 2,   computeLocalFeatures () 
FPFHEstimation
KdTree
ISSKeypoint3D
getKeypointsIndicesinRadius

C, SAC-IA配准
findBestAlignment中进行SAC-IA配准计算

D, ICP进一步配准
IterativeClosestPoint



//==打印输出调试信息==//
FILE* fxp = fopen("F:\\x_p.txt","w+");
fprintf(fxp,"%.2f  ",df);
fclose(fxp);






















相关文章:

  • 2021-05-29
  • 2021-07-25
  • 2021-05-28
  • 2021-06-13
  • 2021-10-09
  • 2021-09-10
  • 2021-05-09
  • 2021-12-05
猜你喜欢
  • 2021-08-03
  • 2021-04-17
  • 2021-06-07
  • 2022-12-23
  • 2021-11-02
  • 2022-01-16
相关资源
相似解决方案