shadow.cpp
Go to the documentation of this file.
1 #include "shadow.h"
2 
4 
5 namespace python
6 {
7  namespace datapointsfilters
8  {
9  void pybindShadow(py::module& p_module)
10  {
12  py::class_<ShadowDataPointsFilter, std::shared_ptr<ShadowDataPointsFilter>, DataPointsFilter>(p_module, "ShadowDataPointsFilter", "Shadow filter, remove ghost points appearing on edges")
13 
14  .def_static("description", &ShadowDataPointsFilter::description)
15  .def_static("availableParameters", &ShadowDataPointsFilter::availableParameters)
16 
17  .def_readonly("eps", &ShadowDataPointsFilter::eps)
18 
19  .def(py::init<const Parameters&>(), py::arg("params") = Parameters(), "Constructor, uses parameter interface")
20 
21  .def("filter", &ShadowDataPointsFilter::filter)
22  .def("inPlaceFilter", &ShadowDataPointsFilter::inPlaceFilter);
23  }
24  }
25 }
static const ParametersDoc availableParameters()
Definition: Shadow.h:59
Shadow filter, remove ghost points appearing on edges.
Definition: Shadow.h:41
virtual void inPlaceFilter(DataPoints &cloud)
Apply these filters to a point cloud without copying.
Definition: Shadow.cpp:62
static const std::string description()
Definition: Shadow.h:54
void pybindShadow(py::module &p_module)
Definition: shadow.cpp:9
PM::Parameters Parameters
virtual DataPoints filter(const DataPoints &input)
Apply filters to input point cloud. This is the non-destructive version and returns a copy...
Definition: Shadow.cpp:53
PM::DataPointsFilter DataPointsFilter


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