OTB  9.0.0
Orfeo Toolbox
otbCBAMIChangeDetector.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 otbCBAMIChangeDetector_h
22 #define otbCBAMIChangeDetector_h
23 
25 #include "otbCBAMI.h"
26 
27 namespace otb
28 {
29 
57 template <class TInputImage1, class TInputImage2, class TOutputImage>
58 class ITK_EXPORT CBAMIChangeDetector
59  : public BinaryFunctorNeighborhoodImageFilter<TInputImage1, TInputImage2, TOutputImage,
60  Functor::CBAMI<typename itk::ConstNeighborhoodIterator<TInputImage1>,
61  typename itk::ConstNeighborhoodIterator<TInputImage2>, typename TOutputImage::PixelType>>
62 {
63 public:
66  typedef BinaryFunctorNeighborhoodImageFilter<TInputImage1, TInputImage2, TOutputImage,
68  typename itk::ConstNeighborhoodIterator<TInputImage2>, typename TOutputImage::PixelType>>
70  typedef itk::SmartPointer<Self> Pointer;
71  typedef itk::SmartPointer<const Self> ConstPointer;
72 
74  itkNewMacro(Self);
75 
77  itkTypeMacro(CBAMIChangeDetector, SuperClass);
78 
79 protected:
81  {
82  }
84  {
85  }
86 
87 private:
88  CBAMIChangeDetector(const Self&) = delete;
89  void operator=(const Self&) = delete;
90 };
91 
92 } // end namespace otb
93 
94 #endif
otb::BinaryFunctorNeighborhoodImageFilter
Implements neighborhood-wise generic operation of two images.
Definition: otbBinaryFunctorNeighborhoodImageFilter.h:47
otb
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.
Definition: otbJoinContainer.h:32
otbBinaryFunctorNeighborhoodImageFilter.h
otb::CBAMIChangeDetector
Implements neighborhood-wise the computation of the cumulant-based approximation to mutual informatio...
Definition: otbCBAMIChangeDetector.h:58
otbCBAMI.h
otb::CBAMIChangeDetector::ConstPointer
itk::SmartPointer< const Self > ConstPointer
Definition: otbCBAMIChangeDetector.h:71
otb::Functor::CBAMI
Definition: otbCBAMI.h:34
otb::CBAMIChangeDetector::Superclass
BinaryFunctorNeighborhoodImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::CBAMI< typename itk::ConstNeighborhoodIterator< TInputImage1 >, typename itk::ConstNeighborhoodIterator< TInputImage2 >, typename TOutputImage::PixelType > > Superclass
Definition: otbCBAMIChangeDetector.h:69
otb::CBAMIChangeDetector::~CBAMIChangeDetector
~CBAMIChangeDetector() override
Definition: otbCBAMIChangeDetector.h:83
otb::CBAMIChangeDetector::Self
CBAMIChangeDetector Self
Definition: otbCBAMIChangeDetector.h:65
otb::CBAMIChangeDetector::CBAMIChangeDetector
CBAMIChangeDetector()
Definition: otbCBAMIChangeDetector.h:80
otb::CBAMIChangeDetector::Pointer
itk::SmartPointer< Self > Pointer
Definition: otbCBAMIChangeDetector.h:70