ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkConjugateGradientOptimizer.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 __itkConjugateGradientOptimizer_h
19 #define __itkConjugateGradientOptimizer_h
20 
21 #include "itkIntTypes.h"
23 #include "vnl/algo/vnl_conjugate_gradient.h"
24 
25 namespace itk
26 {
33 class ITK_EXPORT ConjugateGradientOptimizer:
35 
36 {
37 public:
43 
45  itkNewMacro(Self);
46 
49 
52 
54  typedef vnl_conjugate_gradient InternalOptimizerType;
55 
57  vnl_conjugate_gradient * GetOptimizer(void);
58 
60  void StartOptimization(void);
61 
63  virtual void SetCostFunction(SingleValuedCostFunction *costFunction);
64 
66  SizeValueType GetNumberOfIterations(void) const;
67 
68  SizeValueType GetCurrentIteration(void) const;
69 
71  MeasureType GetValue() const;
72 
73 protected:
75  virtual ~ConjugateGradientOptimizer();
76 
77  typedef Superclass::CostFunctionAdaptorType CostFunctionAdaptorType;
78 private:
79  ConjugateGradientOptimizer(const Self &); //purposely not implemented
80  void operator=(const Self &); //purposely not implemented
81 
85 };
86 } // end namespace itk
87 
88 #endif
89