open3d.registration.registration_ransac_based_on_correspondence

open3d.registration.registration_ransac_based_on_correspondence(source, target, corres, max_correspondence_distance, estimation_method=pipelines::registration::TransformationEstimationPointToPoint without scaling., ransac_n=6, criteria=pipelines::registration::RANSACConvergenceCriteria class with max_iteration=1000, and max_validation=1000)

Function for global RANSAC registration based on a set of correspondences

Parameters
  • source (open3d.geometry.PointCloud) – The source point cloud.

  • target (open3d.geometry.PointCloud) – The target point cloud.

  • corres (open3d.utility.Vector2iVector) – Checker class to check if two point clouds can be aligned. One of (pipelines::registration::CorrespondenceCheckerBasedOnEdgeLength, pipelines::registration::CorrespondenceCheckerBasedOnDistance, pipelines::registration::CorrespondenceCheckerBasedOnNormal)

  • max_correspondence_distance (float) – Maximum correspondence points-pair distance.

  • estimation_method (open3d.registration.TransformationEstimation, optional, default=pipelines::registration::TransformationEstimationPointToPoint without scaling.) – Estimation method. One of (pipelines::registration::TransformationEstimationPointToPoint, pipelines::registration::TransformationEstimationPointToPlane)

  • ransac_n (int, optional, default=6) – Fit ransac with ransac_n correspondences

  • criteria (open3d.registration.RANSACConvergenceCriteria, optional, default=pipelines::registration::RANSACConvergenceCriteria class with max_iteration=1000, and max_validation=1000) – Convergence criteria

Returns

open3d.registration.RegistrationResult