00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkGaussianMixtureModelComponent.h,v $ 00005 Language: C++ 00006 Date: $Date: 2005/07/26 15:54:55 $ 00007 Version: $Revision: 1.10 $ 00008 00009 Copyright (c) Insight Software Consortium. All rights reserved. 00010 See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 00018 #ifndef __itkGaussianMixtureModelComponent_h 00019 #define __itkGaussianMixtureModelComponent_h 00020 00021 #include "itkMixtureModelComponentBase.h" 00022 #include "itkGaussianDensityFunction.h" 00023 #include "itkWeightedMeanCalculator.h" 00024 #include "itkWeightedCovarianceCalculator.h" 00025 00026 namespace itk{ 00027 namespace Statistics{ 00028 00047 template< class TSample > 00048 class GaussianMixtureModelComponent : 00049 public MixtureModelComponentBase< TSample > 00050 { 00051 public: 00053 typedef GaussianMixtureModelComponent Self; 00054 typedef MixtureModelComponentBase< TSample > Superclass ; 00055 typedef SmartPointer<Self> Pointer; 00056 typedef SmartPointer<const Self> ConstPointer; 00057 00059 itkTypeMacro(GaussianMixtureModelComponent, MixtureModelComponentBase); 00060 itkNewMacro(Self) ; 00061 00062 00064 typedef typename Superclass::MeasurementVectorType MeasurementVectorType ; 00065 typedef typename Superclass::MeasurementVectorSizeType MeasurementVectorSizeType ; 00066 typedef typename Superclass::MembershipFunctionType MembershipFunctionType ; 00067 typedef typename Superclass::WeightArrayType WeightArrayType ; 00068 typedef typename Superclass::ParametersType ParametersType ; 00069 00071 typedef GaussianDensityFunction< MeasurementVectorType > 00072 NativeMembershipFunctionType ; 00073 00076 typedef WeightedMeanCalculator< TSample > MeanEstimatorType ; 00077 typedef WeightedCovarianceCalculator< TSample > CovarianceEstimatorType ; 00078 00080 typedef typename MeanEstimatorType::OutputType MeanType ; 00081 00083 typedef typename CovarianceEstimatorType::OutputType CovarianceType ; 00084 00086 void SetSample(const TSample* sample) ; 00087 00089 void SetParameters(const ParametersType ¶meters) ; 00090 00091 protected: 00092 GaussianMixtureModelComponent() ; 00093 virtual ~GaussianMixtureModelComponent() {} 00094 void PrintSelf(std::ostream& os, Indent indent) const; 00095 00098 double CalculateParametersChange() ; 00099 00101 void GenerateData() ; 00102 00103 private: 00104 typename NativeMembershipFunctionType::Pointer m_GaussianDensityFunction ; 00105 MeanType m_Mean ; 00106 CovarianceType m_Covariance ; 00107 typename MeanEstimatorType::Pointer m_MeanEstimator ; 00108 typename CovarianceEstimatorType::Pointer m_CovarianceEstimator ; 00109 } ; // end of class 00110 00111 } // end of namespace Statistics 00112 } // end of namespace itk 00113 00114 #ifndef ITK_MANUAL_INSTANTIATION 00115 #include "itkGaussianMixtureModelComponent.txx" 00116 #endif 00117 00118 #endif 00119