File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments