ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkCommandIterationUpdatev4.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 itkCommandIterationUpdatev4_h
19#define itkCommandIterationUpdatev4_h
20
21#include "itkCommand.h"
22#include "itkWeakPointer.h"
23
24namespace itk
25{
26
32template <typename TOptimizer>
34{
35public:
40
41
46
47
52
57
61 void
62 Execute(itk::Object * caller, const itk::EventObject & event) override
63 {
64 Execute((const itk::Object *)caller, event);
65 }
66
67 void
68 Execute(const itk::Object *, const itk::EventObject & event) override
69 {
70 if (typeid(event) == typeid(itk::StartEvent))
71 {
72 std::cout << std::endl << "Position Value" << std::endl << std::endl;
73 }
74 else if (typeid(event) == typeid(itk::IterationEvent))
75 {
76 std::cout << m_Optimizer->GetCurrentIteration() << " = " << m_Optimizer->GetValue();
78 {
79 std::cout << " : " << m_Optimizer->GetCurrentPosition();
80 }
81 std::cout << std::endl;
82 }
83 else if (typeid(event) == typeid(itk::EndEvent))
84 {
85 std::cout << std::endl
86 << std::endl
87 << "After " << m_Optimizer->GetCurrentIteration() << " iterations " << std::endl;
89 {
90 std::cout << " Solution is = " << m_Optimizer->GetCurrentPosition() << std::endl;
91 }
92 std::cout << "Solution value = " << m_Optimizer->GetValue() << std::endl
93 << "Stop condition = " << m_Optimizer->GetStopConditionDescription() << std::endl;
94 }
95 }
96
97
101 itkOverrideGetNameOfClassMacro(CommandIterationUpdatev4);
102
103
107 itkNewMacro(Self);
108
109
113 using OptimizerType = TOptimizer;
114
115
119 void
121 {
122 m_Optimizer = optimizer;
123 m_Optimizer->AddObserver(itk::IterationEvent(), this);
124 }
125
130 itkSetMacro(PrintParameters, bool);
131 itkGetMacro(PrintParameters, bool);
132 itkBooleanMacro(PrintParameters);
134
135protected:
140
141private:
146
147 bool m_PrintParameters{ false };
148};
149
150} // end namespace itk
151
152#endif
void Execute(const itk::Object *, const itk::EventObject &event) override
WeakPointer< OptimizerType > m_Optimizer
void Execute(itk::Object *caller, const itk::EventObject &event) override
void SetOptimizer(OptimizerType *optimizer)
itk::SmartPointer< const Self > ConstPointer
Superclass for callback/observer methods.
Definition itkCommand.h:46
Abstraction of the Events used to communicating among filters and with GUIs.
Base class for most ITK classes.
Definition itkObject.h:62
Implements transparent reference counting.
Implements a weak reference to an object.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....