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 }
python::pointmatcher::pybindMatcher
void pybindMatcher(py::class_< PM > &p_class)
Definition: matcher.cpp:7
matcher.h
python
Definition: add_descriptor.cpp:5
PointMatcherSupport::Parametrizable
The superclass of classes that are constructed using generic parameters. This class provides the para...
Definition: Parametrizable.h:141


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