|
template<class FunctionT , class... Args> |
void | callWithPointCloud (const FunctionT &function, PointContentType type, Args... args) |
| Overload of callWithPointCloud() for functions passed by const reference. More...
|
|
template<class FunctionT , class... Args> |
void | callWithPointCloud (FunctionT &function, PointContentType type, Args... args) |
| Call function with a pcl::PointCloud<PointT> with the adequate PointT according to type . More...
|
|
template<class FunctionT , class... Args> |
void | callWithPointCloudPtr (const FunctionT &function, PointContentType type, Args... args) |
| Overload of callWithPointCloudPtr() for functions passed by const reference. More...
|
|
template<class FunctionT , class... Args> |
void | callWithPointCloudPtr (FunctionT &function, PointContentType type, Args... args) |
| Call function with a (non-null) pcl::PointCloud<PointT>::Ptr with the adequate PointT according to type . More...
|
|
template<class FunctorT , class... Args> |
std::enable_if_t< !std::is_base_of< detail::FunctorWithReturnType, FunctorT >::value, void > | callWithPointType (const FunctorT &functor, PointContentType type, Args... args) |
| Overload of visitWithPointType() for functors passed by const reference. More...
|
|
template<class VisitorT , class... Args> |
VisitorT::ReturnType | callWithPointType (const VisitorT &functor, PointContentType type, Args... args) |
| Overload of visitWithPointType() for functors with return value passed by const reference. More...
|
|
template<class FunctorT , class... Args> |
std::enable_if_t< !std::is_base_of< detail::FunctorWithReturnType, FunctorT >::value, void > | callWithPointType (FunctorT &functor, PointContentType type, Args... args) |
| Call functor with the correct pcl point type according to type . More...
|
|
template<class VisitorT , class... Args> |
VisitorT::ReturnType | callWithPointType (VisitorT &functor, PointContentType type, Args... args) |
| Overload of visitWithPointType() for functors with return value. More...
|
|