日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

python 点云配准_点云配准(Registration)算法——以PCL为例

發布時間:2024/9/19 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python 点云配准_点云配准(Registration)算法——以PCL为例 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

本文為PCL官方教程的Registration模塊的中文簡介版。

An Overview of Pairwise Registration

點云配準包括以下步驟:

from a set of points, identify?interest points?(i.e.,?keypoints) that best represent the scene in both datasets;

at each keypoint, compute a?feature descriptor;

from the set of?feature descriptors?together with their XYZ positions in the two datasets, estimate a set of?correspondences, based on the similarities between features and positions;

given that the data is assumed to be noisy, not all correspondences are valid, so reject those bad correspondences that contribute negatively to the registration process;

from the remaining set of good correspondences, estimate a motion transformation.

針對上述每一個步驟,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的使用SVD求解轉換矩陣,其參考文章:

Least-Squares Estimation of Transformation Parameters Between Two Point Patterns

(2)

參考論文:

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. 計算迭代步長。

參考論文:

Pose Estimation using Local Structure-Specific Shape and Appearance Context. ICRA 2013.

相關資料:

總結

以上是生活随笔為你收集整理的python 点云配准_点云配准(Registration)算法——以PCL为例的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。