Skip to content

Commit 701f47d

Browse files
authored
FIX: correcting names in bindings + values default
1 parent 060464a commit 701f47d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/diffCheckBindings.cc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,13 @@ PYBIND11_MODULE(diffcheck_bindings, m) {
181181
py::arg("color_clusters") = false)
182182
.def_static("associate_clusters", &diffCheck::segmentation::DFSegmentation::AssociateClustersToMeshes,
183183
py::arg("reference_mesh"),
184-
py::arg("clusters"),
185-
py::arg("angle_threshold") = 0.95,
184+
py::arg("unassociated_clusters"),
185+
py::arg("angle_threshold") = 0.1,
186186
py::arg("association_threshold") = 0.1)
187187
.def_static("clean_unassociated_clusters", &diffCheck::segmentation::DFSegmentation::CleanUnassociatedClusters,
188188
py::arg("unassociated_clusters"),
189-
py::arg("existing_point_cloud_segments"),
190-
py::arg("meshes"),
191-
py::arg("angle_threshold") = 0.95,
189+
py::arg("associated_clusters"),
190+
py::arg("reference_mesh"),
191+
py::arg("angle_threshold") = 0.1,
192192
py::arg("association_threshold") = 0.1);
193-
}
193+
}

0 commit comments

Comments
 (0)