Loading [MathJax]/jax/output/HTML-CSS/config.js
ITK 6.0.0
Insight Toolkit
 
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Loading...
Searching...
No Matches
itkParticleSwarmOptimizerBase.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
19#ifndef itkParticleSwarmOptimizerBase_h
20#define itkParticleSwarmOptimizerBase_h
21
24#include "ITKOptimizersExport.h"
25
26namespace itk
27{
55{
56public:
57 ITK_DISALLOW_COPY_AND_MOVE(ParticleSwarmOptimizerBase);
58
64
66 itkOverrideGetNameOfClassMacro(ParticleSwarmOptimizerBase);
67
68 using ParameterBoundsType = std::vector<std::pair<ParametersType::ValueType, ParametersType::ValueType>>;
69
78
79 using SwarmType = std::vector<ParticleData>;
80 using NumberOfIterationsType = unsigned int;
81 using NumberOfParticlesType = unsigned int;
82 using NumberOfGenerationsType = unsigned int;
83 using MeasureType = CostFunctionType::MeasureType;
86
93 itkSetMacro(InitializeNormalDistribution, bool);
94 itkGetMacro(InitializeNormalDistribution, bool);
95 itkBooleanMacro(InitializeNormalDistribution);
103 void
104 SetInitialSwarm(const SwarmType & initialSwarm);
105 void
114 itkSetMacro(PrintSwarm, bool);
115 itkGetMacro(PrintSwarm, bool);
116 itkBooleanMacro(PrintSwarm);
119 void
121
122
126 void
128 itkGetMacro(NumberOfParticles, NumberOfParticlesType);
133 itkSetMacro(MaximalNumberOfIterations, NumberOfIterationsType);
134 itkGetMacro(MaximalNumberOfIterations, NumberOfIterationsType);
141 itkSetMacro(NumberOfGenerationsWithMinimalImprovement, NumberOfGenerationsType);
142 itkGetMacro(NumberOfGenerationsWithMinimalImprovement, NumberOfGenerationsType);
148 virtual void
150 void
151 SetParameterBounds(std::pair<ParametersType::ValueType, ParametersType::ValueType> & bounds, unsigned int n);
155
170 itkSetMacro(FunctionConvergenceTolerance, MeasureType);
171 itkGetMacro(FunctionConvergenceTolerance, MeasureType);
172
176 void
177 SetParametersConvergenceTolerance(ValueType convergenceTolerance, unsigned int sz);
178 itkSetMacro(ParametersConvergenceTolerance, ParametersType);
179 itkGetMacro(ParametersConvergenceTolerance, ParametersType);
180 itkGetMacro(PercentageParticlesConverged, double);
181 itkSetMacro(PercentageParticlesConverged, double);
194 itkSetMacro(UseSeed, bool);
195 itkGetMacro(UseSeed, bool);
196 itkBooleanMacro(UseSeed);
202 GetValue() const;
203
205 std::string
207
212 void
213 PrintSwarm(std::ostream & os, Indent indent) const;
214
215protected:
218 void
219 PrintSelf(std::ostream & os, Indent indent) const override;
220 void
221 PrintParamtersType(const ParametersType & x, std::ostream & os) const;
222
225 virtual void
227
228 virtual void
230
234 virtual void
236
237 void
239 void
241
243 std::ostringstream m_StopConditionDescription{};
251 CostFunctionType::MeasureType m_FunctionConvergenceTolerance{};
252 std::vector<ParticleData> m_Particles{};
253 CostFunctionType::MeasureType m_FunctionBestValue{ 0 };
254 std::vector<MeasureType> m_FunctionBestValueMemory{};
258 bool m_UseSeed{};
259};
260} // end namespace itk
261
262#endif
Control indentation during Print() invocation.
Definition itkIndent.h:50
ParameterBoundsType GetParameterBounds() const
void SetParameterBounds(std::pair< ParametersType::ValueType, ParametersType::ValueType > &bounds, unsigned int n)
std::string GetStopConditionDescription() const override
SingleValuedNonLinearOptimizer Superclass
CostFunctionType::MeasureType m_FunctionConvergenceTolerance
std::vector< MeasureType > m_FunctionBestValueMemory
MeasureType GetValue() const
void SetInitialSwarm(const SwarmType &initialSwarm)
CostFunctionType::MeasureType m_FunctionBestValue
Statistics::MersenneTwisterRandomVariateGenerator RandomVariateGeneratorType
void PrintSelf(std::ostream &os, Indent indent) const override
CostFunctionType::MeasureType MeasureType
void PrintSwarm(std::ostream &os, Indent indent) const
void PrintParamtersType(const ParametersType &x, std::ostream &os) const
void SetParametersConvergenceTolerance(ValueType convergenceTolerance, unsigned int sz)
NumberOfGenerationsType m_NumberOfGenerationsWithMinimalImprovement
std::vector< std::pair< ParametersType::ValueType, ParametersType::ValueType > > ParameterBoundsType
void SetNumberOfParticles(NumberOfParticlesType n)
RandomVariateGeneratorType::IntegerType m_Seed
virtual void SetParameterBounds(ParameterBoundsType &bounds)
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....