OTB  9.0.0
Orfeo Toolbox
otbMeanDifferenceImageFilter.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2022 Centre National d'Etudes Spatiales (CNES)
3  *
4  * This file is part of Orfeo Toolbox
5  *
6  * https://www.orfeo-toolbox.org/
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20 
21 #ifndef otbMeanDifferenceImageFilter_h
22 #define otbMeanDifferenceImageFilter_h
23 
25 #include "otbMeanDifference.h"
26 
27 namespace otb
28 {
55 template <class TInputImage1, class TInputImage2, class TOutputImage>
56 class ITK_EXPORT MeanDifferenceImageFilter
58  TInputImage1, TInputImage2, TOutputImage,
59  Functor::MeanDifference<typename itk::ConstNeighborhoodIterator<TInputImage1>, typename itk::ConstNeighborhoodIterator<TInputImage2>,
60  typename TOutputImage::PixelType>>
61 {
62 public:
65  typedef BinaryFunctorNeighborhoodImageFilter<TInputImage1, TInputImage2, TOutputImage,
67  typename itk::ConstNeighborhoodIterator<TInputImage2>, typename TOutputImage::PixelType>>
69  typedef itk::SmartPointer<Self> Pointer;
70  typedef itk::SmartPointer<const Self> ConstPointer;
71 
73  itkNewMacro(Self);
74 
76  itkTypeMacro(MeanDifferenceImageFilter, SuperClass);
77 
78 protected:
80  {
81  }
83  {
84  }
85 
86 private:
87  MeanDifferenceImageFilter(const Self&) = delete;
88  void operator=(const Self&) = delete;
89 };
90 
91 } // end namespace otb
92 
93 #endif
otb::BinaryFunctorNeighborhoodImageFilter
Implements neighborhood-wise generic operation of two images.
Definition: otbBinaryFunctorNeighborhoodImageFilter.h:47
otb::MeanDifferenceImageFilter::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbMeanDifferenceImageFilter.h:69
otb::MeanDifferenceImageFilter::~MeanDifferenceImageFilter
~MeanDifferenceImageFilter() override
Definition: otbMeanDifferenceImageFilter.h:82
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otbBinaryFunctorNeighborhoodImageFilter.h
otb::MeanDifferenceImageFilter::Self
MeanDifferenceImageFilter Self
Definition: otbMeanDifferenceImageFilter.h:64
otbMeanDifference.h
otb::Functor::MeanDifference
Definition: otbMeanDifference.h:31
otb::MeanDifferenceImageFilter::MeanDifferenceImageFilter
MeanDifferenceImageFilter()
Definition: otbMeanDifferenceImageFilter.h:79
otb::MeanDifferenceImageFilter
Implements neighborhood-wise the computation of mean difference.
Definition: otbMeanDifferenceImageFilter.h:56
otb::MeanDifferenceImageFilter::Superclass
BinaryFunctorNeighborhoodImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::MeanDifference< typename itk::ConstNeighborhoodIterator< TInputImage1 >, typename itk::ConstNeighborhoodIterator< TInputImage2 >, typename TOutputImage::PixelType > > Superclass
Definition: otbMeanDifferenceImageFilter.h:68
otb::MeanDifferenceImageFilter::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbMeanDifferenceImageFilter.h:70