File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
include/pcl/filters/experimental Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ set(incs
58
58
"include/pcl/${SUBSYS_NAME} /extract_indices.h"
59
59
"include/pcl/${SUBSYS_NAME} /filter.h"
60
60
"include/pcl/${SUBSYS_NAME} /filter_indices.h"
61
- "include/pcl/${SUBSYS_NAME} /functor_filter.h"
61
+ "include/pcl/${SUBSYS_NAME} /experimental/ functor_filter.h"
62
62
"include/pcl/${SUBSYS_NAME} /passthrough.h"
63
63
"include/pcl/${SUBSYS_NAME} /shadowpoints.h"
64
64
"include/pcl/${SUBSYS_NAME} /project_inliers.h"
Original file line number Diff line number Diff line change 13
13
#include < pcl/type_traits.h> // for is_invocable
14
14
15
15
namespace pcl {
16
+ namespace experimental {
16
17
template <typename PointT, typename Function>
17
18
constexpr static bool is_functor_for_filter_v =
18
19
pcl::is_invocable_r_v<bool ,
@@ -95,4 +96,5 @@ class FunctorFilter : public FilterIndices<PointT> {
95
96
}
96
97
}
97
98
};
99
+ } // namespace experimental
98
100
} // namespace pcl
Original file line number Diff line number Diff line change 8
8
*/
9
9
10
10
#include < pcl/common/generate.h>
11
- #include < pcl/filters/functor_filter.h>
11
+ #include < pcl/filters/experimental/ functor_filter.h>
12
12
#include < pcl/test/gtest.h>
13
13
#include < pcl/point_types.h>
14
14
15
15
using namespace pcl ;
16
+ using namespace pcl ::experimental;
16
17
17
18
TEST (FunctorFilterTrait, CheckCompatibility)
18
19
{
You can’t perform that action at this time.
0 commit comments