ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkLevenbergMarquardtOptimizer.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 itkLevenbergMarquardtOptimizer_h
19#define itkLevenbergMarquardtOptimizer_h
20
22#include "ITKOptimizersExport.h"
23#include <string>
24
25class vnl_levenberg_marquardt;
26
27namespace itk
28{
40{
41public:
42 ITK_DISALLOW_COPY_AND_MOVE(LevenbergMarquardtOptimizer);
43
49
51 itkNewMacro(Self);
52
54 itkOverrideGetNameOfClassMacro(LevenbergMarquardtOptimizer);
55
57 using InternalParametersType = vnl_vector<double>;
58
59#if !defined(ITK_LEGACY_REMOVE)
63 using InternalOptimizerType = vnl_levenberg_marquardt;
64
68 itkLegacyMacro(vnl_levenberg_marquardt * GetOptimizer() const);
69#endif
70
72 void
74
76 void
78
79 void
80 SetNumberOfIterations(unsigned int iterations);
81
82 void
83 SetValueTolerance(double tol);
84
85 void
87
88 void
89 SetEpsilonFunction(double epsilon);
90
93 GetValue() const;
94
95 std::string
97
98protected:
101
103
104private:
106 unsigned int m_NumberOfIterations{};
111};
112} // end namespace itk
113
114#endif
void SetNumberOfIterations(unsigned int iterations)
void SetEpsilonFunction(double epsilon)
std::string GetStopConditionDescription() const override
MultipleValuedNonLinearVnlOptimizer Superclass
void SetCostFunction(MultipleValuedCostFunction *costFunction) override
MeasureType GetValue() const
void SetValueTolerance(double tol)
void SetGradientTolerance(double tol)
Superclass::CostFunctionAdaptorType CostFunctionAdaptorType
This class is a base for the CostFunctions returning a multiple values.
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....