标签:pair bsp position from ide str 文章 ant tag
本文为PCL官方教程的Registration模块的中文简介版。
An Overview of Pairwise Registration
点云配准包括以下步骤:
针对上述每一个步骤,PCL的registration模块提供了多种算法进行实现 。
Keypoint
诸如 NARF, SIFT and FAST。
Feature descriptors
诸如NARF, FPFH, BRIEF or SIFT。
Correspondences Estimation
point matching
brute force matching,
kd-tree nearest neighbor search (FLANN),
searching in the image space of organized data, and
searching in the index space of organized data.
feature matching
brute force matching and
kd-tree nearest neighbor search (FLANN).
Corresdondences Rejection
使用RANSAC,或者剪出多余数据。
Transformation Estimation
诸如 SVD for motion estimate; - Levenberg-Marquardt with different kernels for motion estimate。
算法案例
其中(1)和(2)是point matching,(3)是feature matching。
(1)ICP
ICP的使用SVD求解转换矩阵,其参考文章:
Least-Squares Estimation of Transformation Parameters Between Two Point Patterns
(2)NDT
参考论文:
1. The Three-Dimensional Normal-Distributions Transform an Efficient Representation for Registration, Surface Analysis, and Loop Detection. MARTIN MAGNUSSON doctoral dissertation。
2. Line Search Algorithm with Guaranteed Sufficient Decrease. 计算迭代步长。
(3)改进版RANSAC
参考论文:
Pose Estimation using Local Structure-Specific Shape and Appearance Context. ICRA 2013.
标签:pair bsp position from ide str 文章 ant tag
原文地址:https://www.cnblogs.com/gdut-gordon/p/12260384.html