OTB  10.0.0
Orfeo Toolbox
otbExhaustiveExponentialOptimizer.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 otbExhaustiveExponentialOptimizer_h
22 #define otbExhaustiveExponentialOptimizer_h
23 
24 #include "itkSingleValuedNonLinearOptimizer.h"
25 
26 namespace otb
27 {
28 
47 class ITK_ABI_EXPORT ExhaustiveExponentialOptimizer : public itk::SingleValuedNonLinearOptimizer
48 {
49 public:
52  typedef itk::SingleValuedNonLinearOptimizer Superclass;
53  typedef itk::SmartPointer<Self> Pointer;
54  typedef itk::SmartPointer<const Self> ConstPointer;
55 
56  typedef itk::Array<unsigned long> StepsType;
58  itkNewMacro(Self);
59 
61  itkTypeMacro(ExhaustiveExponentialOptimizer, itk::SingleValuedNonLinearOptimizer);
62 
63  void StartOptimization(void) override;
64 
65  void StartWalking(void);
66  void ResumeWalking(void);
67  void StopWalking(void);
68 
69  itkSetMacro(GeometricProgression, double);
70  itkSetMacro(NumberOfSteps, StepsType);
71  itkSetMacro(StepLength, double);
72  itkGetConstReferenceMacro(GeometricProgression, double);
73  itkGetConstReferenceMacro(NumberOfSteps, StepsType);
74  itkGetConstReferenceMacro(StepLength, double);
75  itkGetConstReferenceMacro(CurrentValue, MeasureType);
76  itkGetConstReferenceMacro(MaximumMetricValue, MeasureType);
77  itkGetConstReferenceMacro(MinimumMetricValue, MeasureType);
78  itkGetConstReferenceMacro(MinimumMetricValuePosition, ParametersType);
79  itkGetConstReferenceMacro(MaximumMetricValuePosition, ParametersType);
80  itkGetConstReferenceMacro(CurrentIndex, ParametersType);
81  itkGetConstReferenceMacro(MaximumNumberOfIterations, unsigned long);
82 
83 protected:
86  {
87  }
88  void PrintSelf(std::ostream& os, itk::Indent indent) const override;
89 
91  void AdvanceOneStep(void);
92  void IncrementIndex(ParametersType& param);
94 
95 protected:
96  MeasureType m_CurrentValue;
98  double m_StepLength;
99  unsigned long m_CurrentIteration;
100  bool m_Stop;
101  unsigned int m_CurrentParameter;
103  ParametersType m_CurrentIndex;
105  MeasureType m_MaximumMetricValue;
106  MeasureType m_MinimumMetricValue;
109 
110 private:
112  void operator=(const Self&) = delete;
113 };
114 
115 } // end namespace otb
116 
117 #endif
This optimizer performs an exhaustive search on an exponential scale.
ExhaustiveExponentialOptimizer(const Self &)=delete
void StartOptimization(void) override
void PrintSelf(std::ostream &os, itk::Indent indent) const override
itk::SingleValuedNonLinearOptimizer Superclass
void IncrementIndex(ParametersType &param)
void operator=(const Self &)=delete
The "otb" namespace contains all Orfeo Toolbox (OTB) classes.