ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkExpectationMaximizationMixtureModelEstimator.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 itkExpectationMaximizationMixtureModelEstimator_h
19#define itkExpectationMaximizationMixtureModelEstimator_h
20
21#include "ITKStatisticsExport.h"
25
26namespace itk
27{
28namespace Statistics
29{
35{
36public:
40 enum class TERMINATION_CODE : uint8_t
41 {
44 };
45};
46// Define how to print enumeration
47extern ITKStatistics_EXPORT std::ostream &
49
83template <typename TSample>
84class ITK_TEMPLATE_EXPORT ExpectationMaximizationMixtureModelEstimator : public Object
85{
86public:
92
95 itkOverrideGetNameOfClassMacro(ExpectationMaximizationMixtureModelEstimator);
96 itkNewMacro(Self);
99 using SampleType = TSample;
100 using MeasurementType = typename TSample::MeasurementType;
101 using MeasurementVectorType = typename TSample::MeasurementVectorType;
102
106
108
111 using MembershipFunctionVectorType = std::vector<MembershipFunctionPointer>;
114
117
119 using ComponentVectorType = std::vector<ComponentType *>;
120
123
126
128 void
129 SetSample(const TSample * sample);
130
132 const TSample *
133 GetSample() const;
134
137 void
139
142
146
150
154
159 void
160 SetMaximumIteration(int numberOfIterations);
161
162 int
164
166 int
168 {
169 return m_CurrentIteration;
170 }
171
173 int
175
177 unsigned int
179
181 void
183
185#if !defined(ITK_LEGACY_REMOVE)
187 static constexpr TERMINATION_CODE_ENUM CONVERGED = TERMINATION_CODE_ENUM::CONVERGED;
188 static constexpr TERMINATION_CODE_ENUM NOT_CONVERGED = TERMINATION_CODE_ENUM::NOT_CONVERGED;
189#endif
190
194
198 GetComponentMembershipFunction(int componentIndex) const;
199
203 GetOutput() const;
204
205protected:
208 void
209 PrintSelf(std::ostream & os, Indent indent) const override;
210
211 bool
213
214 double
216
217 bool
219
220 bool
222
224 void
226
227private:
229 const TSample * m_Sample{};
230
231 int m_MaxIteration{ 100 };
233
234 TERMINATION_CODE_ENUM m_TerminationCode{ TERMINATION_CODE_ENUM::NOT_CONVERGED };
238
241}; // end of class
242} // end of namespace Statistics
243} // end of namespace itk
244
245#ifndef ITK_MANUAL_INSTANTIATION
246# include "itkExpectationMaximizationMixtureModelEstimator.hxx"
247#endif
248
249#endif
Array class with size defined at construction time.
Definition itkArray.h:48
Control indentation during Print() invocation.
Definition itkIndent.h:50
Decorates any "simple" data type (data types without smart pointers) with a DataObject API.
Implements transparent reference counting.
Contains all enum classes used by ExpectationMaximizationMixtureModelEstimator class.
SimpleDataObjectDecorator< MembershipFunctionVectorType > MembershipFunctionVectorObjectType
void SetInitialProportions(ProportionVectorType &proportions)
const MembershipFunctionVectorObjectType * GetOutput() const
ExpectationMaximizationMixtureModelEstimatorEnums::TERMINATION_CODE TERMINATION_CODE_ENUM
void PrintSelf(std::ostream &os, Indent indent) const override
const MembershipFunctionsWeightsArrayObjectType * GetMembershipFunctionsWeightsArray() const
const ProportionVectorType & GetInitialProportions() const
typename MembershipFunctionsWeightsArrayObjectType::Pointer MembershipFunctionsWeightsArrayPointer
ComponentMembershipFunctionType * GetComponentMembershipFunction(int componentIndex) const
GaussianMembershipFunction models class membership through a multivariate Gaussian function.
MembershipFunctionBase defines common interfaces for membership functions.
base class for distribution modules that supports analytical way to update the distribution parameter...
ITKStatistics_EXPORT std::ostream & operator<<(std::ostream &out, const ExpectationMaximizationMixtureModelEstimatorEnums::TERMINATION_CODE value)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....