📄 expectationmaximizationclusteringmethod.txx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: ExpectationMaximizationClusteringMethod.txx,v $
Language: C++
Date: $Date: 2003-09-10 14:30:12 $
Version: $Revision: 1.2 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#ifndef __ExpectationMaximizationClusteringMethod_txx
#define __ExpectationMaximizationClusteringMethod_txx
#include "ExpectationMaximizationClusteringMethod.h"
template< class TSample, class THistogram >
ExpectationMaximizationClusteringMethod< TSample, THistogram >
::ExpectationMaximizationClusteringMethod()
{
m_Estimator = EstimatorType::New() ;
}
template< class TSample, class THistogram >
void
ExpectationMaximizationClusteringMethod< TSample, THistogram >
::Initialize(unsigned int numberOfClusters)
{
m_NumberOfComponents = numberOfClusters ;
for (unsigned int i = 0 ; i < m_NumberOfComponents ; i++)
{
m_Components.push_back(ComponentType::New()) ;
m_Components[i]->SetSample(m_Histogram) ;
m_Estimator->AddComponent(m_Components[i]) ;
}
unsigned int numberOfParametersPerComponent =
TSample::MeasurementVectorSize +
TSample::MeasurementVectorSize * TSample::MeasurementVectorSize + 1 ;
m_EstimatedParameters.resize(numberOfParametersPerComponent * m_NumberOfComponents) ;
}
template< class TSample, class THistogram >
void
ExpectationMaximizationClusteringMethod< TSample, THistogram >
::Run()
{
m_Estimator->SetSample(m_Histogram) ;
m_Estimator->SetMaximumIteration(m_MaximumIteration) ;
unsigned int numberOfParametersPerComponent =
TSample::MeasurementVectorSize +
TSample::MeasurementVectorSize * TSample::MeasurementVectorSize + 1 ;
ParametersType componentParams(numberOfParametersPerComponent) ;
ParametersType proportions(m_NumberOfComponents) ;
for ( unsigned int i = 0 ; i < m_NumberOfComponents ; i++ )
{
for ( unsigned int j = 0 ; j < numberOfParametersPerComponent - 1 ; j++ )
{
componentParams[j] =
m_InitialParameters[numberOfParametersPerComponent * i + j] ;
}
proportions[i] =
m_InitialParameters[numberOfParametersPerComponent * (i + 1) - 1 ] ;
(m_Components[i])->SetParameters(componentParams) ;
}
m_Estimator->SetInitialProportions(proportions) ;
m_ProcessBegin = clock() ;
m_Estimator->Update() ;
m_EstimationEnd = clock() ;
unsigned int paramIndex = 0 ;
for ( unsigned int i = 0 ; i < m_NumberOfComponents ; i++ )
{
for ( unsigned int j = 0 ; j < numberOfParametersPerComponent - 1 ; j++ )
{
m_EstimatedParameters[paramIndex] =
m_Components[i]->GetFullParameters()[j] ;
++paramIndex ;
}
m_EstimatedParameters[paramIndex] = (*(m_Estimator->GetProportions()))[i] ;
++paramIndex ;
}
m_LastIteration = m_Estimator->GetCurrentIteration() ;
// generates cluster labels
typename THistogram::InstanceIdentifier histogramId ;
double maxWeight ;
unsigned int maxComponentIndex ;
typename THistogram::MeasurementVectorType tempMeasurementVector ;
typename TSample::Iterator d_iter = m_Sample->Begin() ;
typename TSample::Iterator d_end = m_Sample->End() ;
while( d_iter != d_end )
{
for ( unsigned int i = 0 ; i < TSample::MeasurementVectorSize ; i++ )
{
tempMeasurementVector[i] = d_iter.GetMeasurementVector()[i] ;
}
histogramId =
m_Histogram->GetInstanceIdentifier(m_Histogram->GetIndex(tempMeasurementVector)) ;
maxComponentIndex = 0 ;
maxWeight = 0.0 ;
for ( unsigned int i = 0 ; i < m_NumberOfComponents ; i++ )
{
if ( m_Components[i]->GetWeight(histogramId) > maxWeight )
{
maxWeight = m_Components[i]->GetWeight(histogramId) ;
maxComponentIndex = i ;
}
}
m_ClusterLabels[d_iter.GetInstanceIdentifier()] = maxComponentIndex ;
++d_iter ;
}
m_ProcessEnd = clock() ;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -