ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkPowellOptimizerv4.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 itkPowellOptimizerv4_h
19#define itkPowellOptimizerv4_h
20
21#include "itkVector.h"
22#include "itkMatrix.h"
24
25namespace itk
26{
59template <typename TInternalComputationValueType>
60class ITK_TEMPLATE_EXPORT PowellOptimizerv4 : public ObjectToObjectOptimizerBaseTemplate<TInternalComputationValueType>
61{
62public:
68
70 itkNewMacro(Self);
71
73 itkOverrideGetNameOfClassMacro(PowellOptimizerv4);
74
75 using typename Superclass::ParametersType;
76 using typename Superclass::MeasureType;
77 using typename Superclass::ScalesType;
78
81 itkSetMacro(MaximumIteration, unsigned int);
82 itkGetConstReferenceMacro(MaximumIteration, unsigned int);
86 itkSetMacro(MaximumLineIteration, unsigned int);
87 itkGetConstMacro(MaximumLineIteration, unsigned int);
92 itkSetMacro(StepLength, double);
93 itkGetConstReferenceMacro(StepLength, double);
98 itkSetMacro(StepTolerance, double);
99 itkGetConstReferenceMacro(StepTolerance, double);
105 itkSetMacro(ValueTolerance, double);
106 itkGetConstReferenceMacro(ValueTolerance, double);
110 itkGetConstReferenceMacro(CurrentCost, MeasureType);
111 const MeasureType &
112 GetValue() const override
113 {
114 return this->GetCurrentCost();
115 }
116
118 itkGetConstReferenceMacro(CurrentLineIteration, unsigned int);
119
121 void
122 StartOptimization(bool doOnlyInitialization = false) override;
123
127 void
129 {
130 m_Stop = true;
131 }
132
133 itkGetConstReferenceMacro(CatchGetValueException, bool);
134 itkSetMacro(CatchGetValueException, bool);
135 itkBooleanMacro(CatchGetValueException);
136
137 itkGetConstReferenceMacro(MetricWorstPossibleValue, double);
138 itkSetMacro(MetricWorstPossibleValue, double);
139
140 std::string
142
143protected:
146 ~PowellOptimizerv4() override = default;
147 void
148 PrintSelf(std::ostream & os, Indent indent) const override;
149
150 itkSetMacro(CurrentCost, double);
151
154 void
155 SetLine(const ParametersType & origin, const vnl_vector<double> & direction);
156
160 double
161 GetLineValue(double x) const;
162
163 double
164 GetLineValue(double x, ParametersType & tempCoord) const;
165
168 void
169 SetCurrentLinePoint(double x, double fx);
170
173 void
174 Swap(double * a, double * b) const;
175
178 void
179 Shift(double * a, double * b, double * c, double d) const;
180
190 virtual void
191 LineBracket(double * x1, double * x2, double * x3, double * f1, double * f2, double * f3);
192
193 virtual void
194 LineBracket(double * x1, double * x2, double * x3, double * f1, double * f2, double * f3, ParametersType & tempCoord);
195
201 virtual void
203 double bx,
204 double cx,
205 double fa,
206 double functionValueOfb,
207 double fc,
208 double * extX,
209 double * extVal);
210
211 virtual void
213 double bx,
214 double cx,
215 double fa,
216 double functionValueOfb,
217 double fc,
218 double * extX,
219 double * extVal,
220 ParametersType & tempCoord);
221
222 itkGetMacro(SpaceDimension, unsigned int);
223 void
224 SetSpaceDimension(unsigned int dim)
225 {
226 this->m_SpaceDimension = dim;
227 this->m_LineDirection.set_size(dim);
228 this->m_LineOrigin.set_size(dim);
229 this->m_CurrentPosition.set_size(dim);
230 this->Modified();
231 }
232
233 itkSetMacro(CurrentIteration, unsigned int);
234
235 itkGetMacro(Stop, bool);
236 itkSetMacro(Stop, bool);
237
238private:
239 unsigned int m_SpaceDimension{ 0 };
240
242 unsigned int m_CurrentLineIteration{ 0 };
243
245 unsigned int m_MaximumIteration{ 100 };
246 unsigned int m_MaximumLineIteration{ 100 };
247
250
252 double m_StepLength{ 0 };
253 double m_StepTolerance{ 0 };
254
256 vnl_vector<double> m_LineDirection{};
257
258 double m_ValueTolerance{ 0 };
259
262
267 bool m_Stop{ false };
268
270
271 std::ostringstream m_StopConditionDescription{};
272}; // end of class
273} // end of namespace itk
274
275#ifndef ITK_MANUAL_INSTANTIATION
276# include "itkPowellOptimizerv4.hxx"
277#endif
278
279#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
virtual void Modified() const
virtual void LineBracket(double *x1, double *x2, double *x3, double *f1, double *f2, double *f3, ParametersType &tempCoord)
typename MetricType::MeasureType MeasureType
SmartPointer< const Self > ConstPointer
virtual const MeasureType & GetCurrentCost() const
void StartOptimization(bool doOnlyInitialization=false) override
OptimizerParameters< TInternalComputationValueType > ParametersType
std::string GetStopConditionDescription() const override
virtual void BracketedLineOptimize(double ax, double bx, double cx, double fa, double functionValueOfb, double fc, double *extX, double *extVal)
PowellOptimizerv4(const PowellOptimizerv4 &)
virtual void BracketedLineOptimize(double ax, double bx, double cx, double fa, double functionValueOfb, double fc, double *extX, double *extVal, ParametersType &tempCoord)
double GetLineValue(double x, ParametersType &tempCoord) const
void SetLine(const ParametersType &origin, const vnl_vector< double > &direction)
double GetLineValue(double x) const
void Swap(double *a, double *b) const
SmartPointer< Self > Pointer
ObjectToObjectOptimizerBaseTemplate< TInternalComputationValueType > Superclass
void Shift(double *a, double *b, double *c, double d) const
vnl_vector< double > m_LineDirection
const MeasureType & GetValue() const override
void SetCurrentLinePoint(double x, double fx)
void SetSpaceDimension(unsigned int dim)
virtual void LineBracket(double *x1, double *x2, double *x3, double *f1, double *f2, double *f3)
~PowellOptimizerv4() override=default
std::ostringstream m_StopConditionDescription
void PrintSelf(std::ostream &os, Indent indent) const override
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....