OTB  9.0.0
Orfeo Toolbox
otbWaveletOperator.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2022 Centre National d'Etudes Spatiales (CNES)
3  * Copyright (C) 2007-2012 Institut Mines Telecom / Telecom Bretagne
4  *
5  * This file is part of Orfeo Toolbox
6  *
7  * https://www.orfeo-toolbox.org/
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #ifndef otbWaveletOperator_h
23 #define otbWaveletOperator_h
24 
25 #include "itkMacro.h"
26 #include "itkNeighborhoodOperator.h"
27 
28 // This include is needed here to define Wavelet::Wavelet...
29 #include "otbWaveletGenerator.h"
30 
33 
34 namespace otb
35 {
36 
54 template <Wavelet::Wavelet TMotherWaveletOperator, Wavelet::WaveletDirection TDirectionOfTransformation, class TPixel, unsigned int VDimension,
55  class TAllocator = itk::NeighborhoodAllocator<TPixel>>
56 class ITK_EXPORT WaveletOperator
57 {
58 public:
59 
62 
66 
67 private:
73  WaveletOperator(const Self&);
74  ~WaveletOperator();
75 };
77 
78 } // end of namespace otb
79 
80 #endif
otbWaveletHighPassOperator.h
otbWaveletLowPassOperator.h
otb::Wavelet::Wavelet
Wavelet
Definition: otbWaveletGenerator.h:35
otbWaveletGenerator.h
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otb::WaveletOperator
A Generic NeighborhoodOperator wavelets filter set defined for templation.
Definition: otbWaveletOperator.h:56
otb::Wavelet::WaveletDirection
WaveletDirection
Definition: otbWaveletOperatorBase.h:36
otb::WaveletLowPassOperator
Specific implementation of scale part of wavelet transformator.
Definition: otbWaveletLowPassOperator.h:44
otb::WaveletOperator::LowPassOperator
WaveletLowPassOperator< TMotherWaveletOperator, TDirectionOfTransformation, TPixel, VDimension, TAllocator > LowPassOperator
Definition: otbWaveletOperator.h:64
otb::WaveletOperator::HighPassOperator
WaveletHighPassOperator< TMotherWaveletOperator, TDirectionOfTransformation, TPixel, VDimension, TAllocator > HighPassOperator
Definition: otbWaveletOperator.h:65
otb::WaveletHighPassOperator
Specific implementation of the mother wavelet part of wavelet transformator.
Definition: otbWaveletHighPassOperator.h:45
otb::WaveletOperator::Self
WaveletOperator Self
Definition: otbWaveletOperator.h:61