OTB  10.0.0
Orfeo Toolbox
otbCorrelationChangeDetector.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2005-2024 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 otbCorrelationChangeDetector_h
22 #define otbCorrelationChangeDetector_h
23 
25 #include "otbCrossCorrelation.h"
26 
27 namespace otb
28 {
29 
56 template <class TInputImage1, class TInputImage2, class TOutputImage>
57 class ITK_EXPORT CorrelationChangeDetector
59  TInputImage1, TInputImage2, TOutputImage,
60  Functor::CrossCorrelation<typename itk::ConstNeighborhoodIterator<TInputImage1>, typename itk::ConstNeighborhoodIterator<TInputImage2>,
61  typename TOutputImage::PixelType>>
62 {
63 public:
67  TInputImage1, TInputImage2, TOutputImage,
68  Functor::CrossCorrelation<typename itk::ConstNeighborhoodIterator<TInputImage1>, typename itk::ConstNeighborhoodIterator<TInputImage2>,
69  typename TOutputImage::PixelType>>
71  typedef itk::SmartPointer<Self> Pointer;
72  typedef itk::SmartPointer<const Self> ConstPointer;
73 
75  itkNewMacro(Self);
76 
78  itkTypeMacro(CorrelationChangeDetector, SuperClass);
79 
80 protected:
83 
84 private:
85  CorrelationChangeDetector(const Self&) = delete;
86  void operator=(const Self&) = delete;
87 };
88 
89 } // end namespace otb
90 
91 #endif
Implements neighborhood-wise generic operation of two images.
Implements neighborhood-wise the computation of crosscorrelation.
void operator=(const Self &)=delete
itk::SmartPointer< const Self > ConstPointer
BinaryFunctorNeighborhoodImageFilter< TInputImage1, TInputImage2, TOutputImage, Functor::CrossCorrelation< typename itk::ConstNeighborhoodIterator< TInputImage1 >, typename itk::ConstNeighborhoodIterator< TInputImage2 >, typename TOutputImage::PixelType > > Superclass
CorrelationChangeDetector(const Self &)=delete
Functor to compute the cross correlation.
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.