matcher.cpp
Go to the documentation of this file.
1 #include "matcher.h"
2 
3 namespace python
4 {
5  namespace pointmatcher
6  {
7  void pybindMatcher(py::class_<PM>& p_class)
8  {
9  py::class_<Matcher, std::shared_ptr<Matcher>, Parametrizable>(p_class, "Matcher")
10  .def_readwrite("visitCounter", &Matcher::visitCounter)
11 
12  .def("resetVisitCount", &Matcher::resetVisitCount).def("getVisitCount", &Matcher::getVisitCount);
13  }
14  }
15 }
void pybindMatcher(py::class_< PM > &p_class)
Definition: matcher.cpp:7
The superclass of classes that are constructed using generic parameters. This class provides the para...


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