00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkDistanceToCentroidMembershipFunction.h,v $ 00005 Language: C++ 00006 Date: $Date: 2007-09-27 15:47:12 $ 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 #ifndef __itkDistanceToCentroidMembershipFunction_h 00018 #define __itkDistanceToCentroidMembershipFunction_h 00019 00020 #include <vnl/vnl_vector.h> 00021 #include <vnl/vnl_transpose.h> 00022 #include <vnl/vnl_matrix.h> 00023 #include <vnl/algo/vnl_matrix_inverse.h> 00024 #include <vnl/algo/vnl_determinant.h> 00025 00026 00027 #include "itkMembershipFunctionBase.h" 00028 00029 00030 namespace itk{ 00031 namespace Statistics{ 00032 00042 template< class TVector > 00043 class ITK_EXPORT DistanceToCentroidMembershipFunction : 00044 public MembershipFunctionBase< TVector > 00045 { 00046 public: 00048 typedef DistanceToCentroidMembershipFunction Self; 00049 typedef MembershipFunctionBase< TVector > Superclass ; 00050 typedef SmartPointer<Self> Pointer; 00051 typedef SmartPointer<const Self> ConstPointer; 00052 00054 itkTypeMacro(DistanceToCentroidMembershipFunction, 00055 MembershipFunctionBase); 00056 itkNewMacro(Self); 00058 00060 typedef TVector MeasurementVectorType ; 00061 00063 typedef typename Superclass::MeasurementVectorSizeType 00064 MeasurementVectorSizeType; 00065 00067 virtual void SetMeasurementVectorSize( const MeasurementVectorSizeType ); 00068 00070 void SetCentroid(const vnl_vector<double> ¢roid) ; 00071 00073 const vnl_vector<double> & GetCentroid() const; 00074 00076 itkSetMacro( NumberOfSamples, int ); 00077 00079 itkGetMacro( NumberOfSamples, int ); 00080 00084 double Evaluate(const MeasurementVectorType &measurement) const; 00085 00086 protected: 00087 DistanceToCentroidMembershipFunction(void) ; 00088 virtual ~DistanceToCentroidMembershipFunction(void) {} 00089 void PrintSelf(std::ostream& os, Indent indent) const; 00090 00091 private: 00092 vnl_vector< double > m_Centroid; // mean 00093 00094 // Number of samples defining this density 00095 int m_NumberOfSamples; 00096 }; 00097 00098 } // end of namespace Statistics 00099 } // end namespace itk 00100 00101 #ifndef ITK_MANUAL_INSTANTIATION 00102 #include "itkDistanceToCentroidMembershipFunction.txx" 00103 #endif 00104 00105 #endif 00106