ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkOptimizerParameterScalesEstimator.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
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  * http://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 itkOptimizerParameterScalesEstimator_h
19 #define itkOptimizerParameterScalesEstimator_h
20 
21 #include "itkObject.h"
22 #include "itkObjectFactory.h"
23 #include "itkOptimizerParameters.h"
24 
25 namespace itk
26 {
27 
37 template< typename TInternalComputationValueType=double >
39 {
40 public:
41  ITK_DISALLOW_COPY_AND_ASSIGN(OptimizerParameterScalesEstimatorTemplate);
42 
45  using Superclass = Object;
48 
51 
54 
57 
59  using FloatType = TInternalComputationValueType;
60 
62  virtual void EstimateScales(ScalesType &scales) = 0;
63 
65  virtual FloatType EstimateStepScale(const ParametersType &step) = 0;
66 
68  virtual void EstimateLocalStepScales(const ParametersType &step,
69  ScalesType &localStepScales) = 0;
70 
72  virtual FloatType EstimateMaximumStepSize() = 0;
73 
74 protected:
76  ~OptimizerParameterScalesEstimatorTemplate() override = default;
77 
78  void PrintSelf(std::ostream &os, Indent indent) const override
79  {
80  Superclass::PrintSelf(os,indent);
81  }
82 }; //class OptimizerParameterScalesEstimatorTemplate
83 
86 
87 } // namespace itk
88 
89 #endif
virtual FloatType EstimateStepScale(const ParametersType &step)=0
Light weight base class for most itk classes.
virtual void EstimateLocalStepScales(const ParametersType &step, ScalesType &localStepScales)=0
void PrintSelf(std::ostream &os, Indent indent) const override
OptimizerParameterScalesEstimatorTemplate is the base class offering a empty method of estimating the...
void PrintSelf(std::ostream &os, Indent indent) const override
Class to hold and manage different parameter types used during optimization.
virtual void EstimateScales(ScalesType &scales)=0
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Base class for most ITK classes.
Definition: itkObject.h:60
~OptimizerParameterScalesEstimatorTemplate() override=default