transformation_checkers.cpp
Go to the documentation of this file.
2 
3 namespace python
4 {
5  namespace pointmatcher
6  {
7  void pybindTransformationCheckers(py::class_<PM>& p_class)
8  {
9  py::bind_vector<TransformationCheckers>(p_class, "TransformationCheckers", "A chain of TransformationChecker")
10  .def(py::init<>())
11  .def("init", &TransformationCheckers::init, py::arg("parameters"), py::arg("iterate"), "Init all transformation checkers, set iterate to false if iteration should stop")
12  .def("check", &TransformationCheckers::check, py::arg("parameters"), py::arg("iterate"), "Check using all transformation checkers, set iterate to false if iteration should stop");
13  }
14  }
15 }
void pybindTransformationCheckers(py::class_< PM > &p_class)


libpointmatcher
Author(s):
autogenerated on Sat May 27 2023 02:38:03