ITK  5.0.0
Insight Segmentation and Registration Toolkit
itkInitializationBiasedParticleSwarmOptimizer.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 
19 #ifndef itkInitializationBiasedParticleSwarmOptimizer_h
20 #define itkInitializationBiasedParticleSwarmOptimizer_h
21 
23 #include "ITKOptimizersExport.h"
24 
25 namespace itk
26 {
72 class ITKOptimizers_EXPORT InitializationBiasedParticleSwarmOptimizer :
74 {
75 public:
76  ITK_DISALLOW_COPY_AND_ASSIGN(InitializationBiasedParticleSwarmOptimizer);
77 
83 
84  using CoefficientType = double;
85 
87  itkNewMacro( Self )
88 
89 
92 
109  itkSetMacro( InertiaCoefficient, CoefficientType )
110  itkGetMacro( InertiaCoefficient, CoefficientType )
111  itkSetMacro( PersonalCoefficient, CoefficientType )
112  itkGetMacro( PersonalCoefficient, CoefficientType )
113  itkSetMacro( GlobalCoefficient, CoefficientType )
114  itkGetMacro( GlobalCoefficient, CoefficientType )
115  itkSetMacro( InitializationCoefficient, CoefficientType )
116  itkGetMacro( InitializationCoefficient, CoefficientType )
118 
119 protected:
120  InitializationBiasedParticleSwarmOptimizer();
121  ~InitializationBiasedParticleSwarmOptimizer() override = default;
122  void PrintSelf(std::ostream& os, Indent indent) const override;
123  void UpdateSwarm() override;
124 
125 private:
126  ParametersType::ValueType m_InertiaCoefficient;
127  ParametersType::ValueType m_PersonalCoefficient;
128  ParametersType::ValueType m_GlobalCoefficient;
129  ParametersType::ValueType m_InitializationCoefficient;
130 };
131 
132 } // end namespace itk
133 
134 #endif
Light weight base class for most itk classes.
Implementation of a biased/regularized Particle Swarm Optimization (PSO) algorithm.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Abstract implementation of a Particle Swarm Optimization (PSO) algorithm.