ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkSingleValuedVnlCostFunctionAdaptorv4.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 itkSingleValuedVnlCostFunctionAdaptorv4_h
19#define itkSingleValuedVnlCostFunctionAdaptorv4_h
20
23#include "vnl/vnl_cost_function.h"
24
25namespace itk
26{
37class SingleValuedVnlCostFunctionAdaptorv4 : public vnl_cost_function
38{
39public:
41 using InternalMeasureType = double;
42
44 using InternalParametersType = vnl_vector<InternalMeasureType>;
45
47 using InternalDerivativeType = vnl_vector<InternalMeasureType>;
48
51
54
57
60
62 SingleValuedVnlCostFunctionAdaptorv4(unsigned int spaceDimension);
63
65 void
67 {
68 m_ObjectMetric = costFunction;
69 }
70
74 {
75 return m_ObjectMetric;
76 }
77
80 f(const InternalParametersType & inparameters) override;
81
83 void
84 gradf(const InternalParametersType & inparameters, InternalDerivativeType & gradient) override;
85
87 void
89
91 void
93
95 void
96 SetScales(const ScalesType & scales);
97
102 unsigned long
103 AddObserver(const EventObject & event, Command *) const;
104
109 itkGetConstReferenceMacro(CachedValue, MeasureType);
110
111 itkGetConstReferenceMacro(CachedDerivative, DerivativeType);
112
114 const ParametersType &
116
117protected:
120 void
121 ReportIteration(const EventObject & event) const;
122
123private:
128
131
132}; // end of Class CostFunction
133
134} // end namespace itk
135
136#endif
Superclass for callback/observer methods.
Definition itkCommand.h:46
Abstraction of the Events used to communicating among filters and with GUIs.
SmartPointer< Self > Pointer
Definition itkObject.h:69
Class to hold and manage different parameter types used during optimization.
OptimizerParameters< double > ParametersType
void ReportIteration(const EventObject &event) const
const ParametersType & GetCachedCurrentParameters() const
void compute(const InternalParametersType &x, InternalMeasureType *fun, InternalDerivativeType *g) override
InternalMeasureType f(const InternalParametersType &inparameters) override
unsigned long AddObserver(const EventObject &event, Command *) const
SingleValuedVnlCostFunctionAdaptorv4(unsigned int spaceDimension)
void gradf(const InternalParametersType &inparameters, InternalDerivativeType &gradient) override
void SetCostFunction(ObjectToObjectMetricBase *costFunction)
void ConvertExternalToInternalGradient(const DerivativeType &input, InternalDerivativeType &output) const
void SetScales(const ScalesType &scales)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
ObjectToObjectMetricBaseTemplate< double > ObjectToObjectMetricBase