We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea8161 commit 765090cCopy full SHA for 765090c
src/diffCheckBindings.cc
@@ -61,8 +61,11 @@ PYBIND11_MODULE(diffcheck_bindings, m) {
61
.def("remove_statistical_outliers", &diffCheck::geometry::DFPointCloud::RemoveStatisticalOutliers,
62
py::arg("nb_neighbors"), py::arg("std_ratio"))
63
64
- .def("get_principal_axes", &diffCheck::geometry::DFPointCloud::GetPrincipalAxes,
65
- py::arg("n_components") = 6)
+ .def("fit_plane_ransac", &diffCheck::geometry::DFPointCloud::FitPlaneRANSAC,
+ py::arg("distance_threshold") = 0.01,
66
+ py::arg("ransac_n") = 3,
67
+ py::arg("num_iterations") = 100)
68
+
69
.def("crop",
70
(void (diffCheck::geometry::DFPointCloud::*)(const Eigen::Vector3d&, const Eigen::Vector3d&))
71
&diffCheck::geometry::DFPointCloud::Crop,
0 commit comments