Ponca  7b3f8ad3fde25a027e6452783ccee143798a71b8
Point Cloud Analysis library
Loading...
Searching...
No Matches
filters.h
1/*
2 This Source Code Form is subject to the terms of the Mozilla Public
3 License, v. 2.0. If a copy of the MPL was not distributed with this
4 file, You can obtain one at http://mozilla.org/MPL/2.0/.
5*/
6
7#if defined(_PONCA_INSTANTIATE_SMOOTHWEIGHT) || defined(_PONCA_INSTANTIATE_ALL)
8# define _NF DistWeightFilter<_P, SmoothWeightKernel<_S>>
9# include "baskets.h"
10# undef _NF
11#endif
12
13#if defined(_PONCA_INSTANTIATE_CONSTANTWEIGHT) || defined(_PONCA_INSTANTIATE_ALL)
14# define _NF DistWeightFilter<_P, ConstantWeightKernel<_S>>
15# include "baskets.h"
16# undef _NF
17#endif
18
19#if defined(_PONCA_INSTANTIATE_NOWEIGHT) || defined(_PONCA_INSTANTIATE_ALL)
20# define _NF Ponca::NoWeightFilter<_P>
21# include "baskets.h"
22# undef _NF
23#endif