📄 kdtreebasedkmeansclusteringmethod.txx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: KdTreeBasedKmeansClusteringMethod.txx,v $
Language: C++
Date: $Date: 2003-09-10 14:30:12 $
Version: $Revision: 1.3 $
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 __KdTreeBasedKmeansClusteringMethod_txx
#define __KdTreeBasedKmeansClusteringMethod_txx
#include "KdTreeBasedKmeansClusteringMethod.h"
template< class TKdTree >
KdTreeBasedKmeansClusteringMethod< TKdTree >
::KdTreeBasedKmeansClusteringMethod()
{
m_KmeansEstimator =
KmeansEstimatorType::New() ;
}
template< class TKdTree >
void
KdTreeBasedKmeansClusteringMethod< TKdTree >
::Run()
{
// classifier.SetComponentClassLabels(classLabels) ;
m_KmeansEstimator->SetKdTree(m_KdTree) ;
m_KmeansEstimator->SetMaximumIteration(m_MaximumIteration) ;
// m_KmeansEstimator->SetCentroidPositionChangesThreshold(0.0) ;
m_KmeansEstimator->SetParameters(m_InitialParameters) ;
m_ProcessBegin = clock() ;
m_KmeansEstimator->StartOptimization() ;
m_EstimationEnd = clock() ;
m_EstimatedParameters = m_KmeansEstimator->GetParameters() ;
m_LastIteration = m_KmeansEstimator->GetCurrentIteration() ;
m_Classifier.SetSample(m_KdTree->GetSample()) ;
m_Classifier.SetParameters(m_EstimatedParameters) ;
m_Classifier.GenerateData() ;
m_ProcessEnd = clock() ;
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -