OTB  10.0.0
Orfeo Toolbox
otbMRFEnergyEdgeFidelity.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 
22 #ifndef otbMRFEnergyEdgeFidelity_h
23 #define otbMRFEnergyEdgeFidelity_h
24 
25 #include "otbMRFEnergy.h"
26 #include "vcl_legacy_aliases.h"
27 
28 namespace otb
29 {
50 
51 template <class TInput1, class TInput2>
52 class ITK_EXPORT MRFEnergyEdgeFidelity : public MRFEnergy<TInput1, TInput2>
53 {
54 public:
57  typedef itk::SmartPointer<Self> Pointer;
58  typedef itk::SmartPointer<const Self> ConstPointer;
59 
60  typedef itk::ConstNeighborhoodIterator<TInput1> NeighborhoodIterator;
61  typedef typename TInput1::PixelType InputImagePixelType;
62  typedef typename TInput2::PixelType LabelledImagePixelType;
63 
64  itkNewMacro(Self);
65 
67 
68  double GetSingleValue(const InputImagePixelType& value1, const LabelledImagePixelType& value2) override
69  {
70  double val1 = static_cast<double>(value1);
71  double val2 = static_cast<double>(value2);
72 
73  return vnl_math_sqr((val1 - val2)) / (1 + vnl_math_sqr(val1 - val2));
74  }
75 
76 protected:
77  // The constructor and destructor.
80  {
81  }
82 };
83 }
84 
85 #endif
This is the implementation of an edge preserving model for Markov denoising.
double GetSingleValue(const InputImagePixelType &value1, const LabelledImagePixelType &value2) override
MRFEnergy< TInput1, TInput2 > Superclass
itk::SmartPointer< Self > Pointer
itk::ConstNeighborhoodIterator< TInput1 > NeighborhoodIterator
itk::SmartPointer< const Self > ConstPointer
TInput2::PixelType LabelledImagePixelType
This is the base class for energy function used in the MRF framework.
Definition: otbMRFEnergy.h:44
InputImageType::PixelType InputImagePixelType
Definition: otbMRFEnergy.h:53
LabelledImageType::PixelType LabelledImagePixelType
Definition: otbMRFEnergy.h:54
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.