incidence_angle.cpp
Go to the documentation of this file.
1 #include "incidence_angle.h"
2 
4 
5 namespace python
6 {
7  namespace datapointsfilters
8  {
9  void pybindIncidenceAngle(py::module& p_module)
10  {
12  py::class_<IncidenceAngleDataPointsFilter, std::shared_ptr<IncidenceAngleDataPointsFilter>, DataPointsFilter>(p_module, "IncidenceAngleDataPointsFilter")
13  .def_static("description", &IncidenceAngleDataPointsFilter::description)
14 
15  .def(py::init<>())
16 
17  .def("filter", &IncidenceAngleDataPointsFilter::filter, py::arg("input"))
18  .def("inPlaceFilter", &IncidenceAngleDataPointsFilter::inPlaceFilter, py::arg("cloud"));
19  }
20  }
21 }
static const std::string description()
void pybindIncidenceAngle(py::module &p_module)
virtual void inPlaceFilter(DataPoints &cloud)
Apply these filters to a point cloud without copying.
virtual DataPoints filter(const DataPoints &input)
Apply filters to input point cloud. This is the non-destructive version and returns a copy...
PM::DataPointsFilter DataPointsFilter
Incidence angle, compute the incidence angle of a surface normal with the observation direction...


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