ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkExhaustiveOptimizerv4.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkExhaustiveOptimizerv4_h
19#define itkExhaustiveOptimizerv4_h
20
21#include "itkIntTypes.h"
23
24namespace itk
25{
83template <typename TInternalComputationValueType>
84class ITK_TEMPLATE_EXPORT ExhaustiveOptimizerv4
85 : public ObjectToObjectOptimizerBaseTemplate<TInternalComputationValueType>
86{
87public:
88 ITK_DISALLOW_COPY_AND_MOVE(ExhaustiveOptimizerv4);
89
95
97 itkNewMacro(Self);
98
100 itkOverrideGetNameOfClassMacro(ExhaustiveOptimizerv4);
101
104
106 using typename Superclass::MeasureType;
107
109 using typename Superclass::ParametersType;
110
112 using typename Superclass::ScalesType;
113
114 void
115 StartOptimization(bool doOnlyInitialization = false) override;
116
118 void
120
122 void
124
126 void
128
129 itkSetMacro(StepLength, double);
130 itkSetMacro(NumberOfSteps, StepsType);
131 itkGetConstReferenceMacro(StepLength, double);
132 itkGetConstReferenceMacro(NumberOfSteps, StepsType);
133 itkGetConstReferenceMacro(CurrentValue, MeasureType);
134 itkGetConstReferenceMacro(MaximumMetricValue, MeasureType);
135 itkGetConstReferenceMacro(MinimumMetricValue, MeasureType);
136 itkGetConstReferenceMacro(MinimumMetricValuePosition, ParametersType);
137 itkGetConstReferenceMacro(MaximumMetricValuePosition, ParametersType);
138 itkGetConstReferenceMacro(CurrentIndex, ParametersType);
139
141 std::string
143
145 void
147
151 {
152 return m_InitialPosition;
153 }
154
155protected:
157 ~ExhaustiveOptimizerv4() override = default;
158 void
159 PrintSelf(std::ostream & os, Indent indent) const override;
160
162 void
164
165 void
167
168protected:
172 bool m_Stop{ false };
173 double m_StepLength{ 1.0 };
179
180private:
181 std::ostringstream m_StopConditionDescription{ "" };
182};
183} // end namespace itk
184
185#ifndef ITK_MANUAL_INSTANTIATION
186# include "itkExhaustiveOptimizerv4.hxx"
187#endif
188
189#endif
Array class with size defined at construction time.
Definition itkArray.h:48
typename MetricType::MeasureType MeasureType
void SetInitialPosition(const ParametersType &param)
OptimizerParameters< TInternalComputationValueType > ParametersType
std::ostringstream m_StopConditionDescription
ObjectToObjectOptimizerBaseTemplate< TInternalComputationValueType > Superclass
SmartPointer< const Self > ConstPointer
std::string GetStopConditionDescription() const override
void StartOptimization(bool doOnlyInitialization=false) override
~ExhaustiveOptimizerv4() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
void IncrementIndex(ParametersType &newPosition)
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....