Ransac Line Segmentation in parallel.
Returns the line with the highest rating/most inliers and the associated indices of the inliers.
Iterates over all points in the buffer.
The distance_threshold sets the maximum distance to the plane that a point is counted as an inlier from.
With num_of_iterations the number of iterations that the algorithm performs can be chosen.
Ransac Line Segmentation in serial (for maximum speed use ransac_line_par).
Returns the line with the highest rating/most inliers and the associated indices of the inliers.
Iterates over all points in the buffer.
The distance_threshold sets the maximum distance to the plane that a point is counted as an inlier from.
With num_of_iterations the number of iterations that the algorithm performs can be chosen.
Ransac Plane Segmentation in parallel.
Returns the plane with the highest rating/most inliers and the associated indices of the inliers.
Iterates over all points in the buffer.
The distance_threshold sets the maximum distance to the plane that a point is counted as an inlier from.
With num_of_iterations the number of iterations that the algorithm performs can be chosen.
Ransac Plane Segmentation in serial (for maximum speed use ransac_plane_par).
Returns the plane with the highest rating/most inliers and the associated indices of the inliers.
Iterates over all points in the buffer.
The distance_threshold sets the maximum distance to the plane that a point is counted as an inlier from.
With num_of_iterations the number of iterations that the algorithm performs can be chosen.