open3d.pipelines.registration.registration_ransac_based_on_feature_matching

open3d.pipelines.registration.registration_ransac_based_on_feature_matching(source, target, source_feature, target_feature, max_correspondence_distance, estimation_method=TransformationEstimationPointToPoint without scaling., ransac_n=4, checkers=[], criteria=RANSACConvergenceCriteria class with max_iteration=100000, and max_validation=100)

Function for global RANSAC registration based on feature matching

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

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

  • source_feature (open3d.pipelines.registration.Feature) – Source point cloud feature.

  • target_feature (open3d.pipelines.registration.Feature) – Target point cloud feature.

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

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

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

  • checkers (List[open3d.cpu.pybind.pipelines.registration.CorrespondenceChecker], optional, default=[]) – Vector of Checker class to check if two point clouds can be aligned. One of (CorrespondenceCheckerBasedOnEdgeLength, CorrespondenceCheckerBasedOnDistance, CorrespondenceCheckerBasedOnNormal)

  • criteria (open3d.cpu.pybind.pipelines.registration.RANSACConvergenceCriteria, optional, default=RANSACConvergenceCriteria class with max_iteration=100000, and max_validation=100) – Convergence criteria

Returns

open3d.cpu.pybind.pipelines.registration.RegistrationResult