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 }
python
Definition: add_descriptor.cpp:5
python::pointmatcher::pybindTransformationCheckers
void pybindTransformationCheckers(py::class_< PM > &p_class)
Definition: transformation_checkers.cpp:7
transformation_checkers.h


libpointmatcher
Author(s):
autogenerated on Mon Jan 1 2024 03:24:43