You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The ICP registration looks for points in the target point cloud that are closest to the source
15
+
* point cloud and computes the transformation that minimizes the distance between the two point clouds.
16
+
* The way the distance is calculated is either with point to point or point to plane methods.
17
+
*
18
+
* @param source DFPointCloud source point cloud
19
+
* @param target DFPointCloud Target point cloud
20
+
* @param maxCorrespondenceDistance Maximum relative correspondence distance. 0.01 means 1% of the bounding box diagonal
21
+
* @param scalingForPointToPointTransformationEstimation Enable scaling for point-to-point transformation estimation. by default it is false, to only allow rigid transformations
22
+
* @param maxIteration Maximum number of ICP iterations to use in the p2p transformation estimation
23
+
* @param relativeFitness Threshold for relative fitness to use in the p2p transformation estimation
24
+
* @param relativeRMSE Threshold for relative RMSE to use in the p2p transformation estimation
25
+
* @param usePointToPlane Use point-to-plane ICP instead of point-to-point. This replaces the p2p with the point-to-plane transformation estimation.
0 commit comments