Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkSampleClassifierWithMask.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkSampleClassifierWithMask.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:29:47 $
00007   Version:   $Revision: 1.3 $
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 __itkSampleClassifierWithMask_h
00018 #define __itkSampleClassifierWithMask_h
00019 
00020 #include <vector>
00021 
00022 #include "itkObject.h"
00023 #include "itkExceptionObject.h"
00024 #include "itkSubsample.h"
00025 #include "itkMembershipSample.h"
00026 #include "itkSampleClassifier.h"
00027 
00028 namespace itk{ 
00029   namespace Statistics{
00030 
00053 template< class TSample, class TMaskSample >
00054 class ITK_EXPORT SampleClassifierWithMask : 
00055       public SampleClassifier< TSample >
00056 {
00057 public:
00059   typedef SampleClassifierWithMask Self;
00060   typedef SampleClassifier< TSample > Superclass;
00061   typedef SmartPointer< Self > Pointer;
00062 
00064   itkTypeMacro(SampleClassifierWithMask, SampleClassifier);
00065   itkNewMacro(Self) ;
00066 
00068   typedef typename Superclass::OutputType OutputType ;
00069   typedef typename Superclass::ClassLabelType ClassLabelType ;
00070   typedef typename Superclass::ClassLabelVectorType ClassLabelVectorType ;
00071 
00073   typedef typename TSample::MeasurementType MeasurementType ;
00074   typedef typename TSample::MeasurementVectorType MeasurementVectorType ;
00075 
00076   itkStaticConstMacro(MeasurementVectorSize, unsigned int,
00077                       TSample::MeasurementVectorSize);
00078 
00080   typedef typename Superclass::MembershipFunctionPointerVector 
00081     MembershipFunctionPointerVector ;
00082 
00083   void SetMask( TMaskSample* mask ) ;
00084 
00085   TMaskSample* GetMask()
00086   { return m_Mask.GetPointer() ; }
00087 
00088   void SetSelectedClassLabels( ClassLabelVectorType& labels)
00089   { m_SelectedClassLabels = labels ; }
00090 
00091   void SetOtherClassLabel( ClassLabelType label) 
00092   { m_OtherClassLabel = label ; }
00093  
00094 protected:
00095   SampleClassifierWithMask() ;
00096   virtual ~SampleClassifierWithMask() {}
00097   void PrintSelf(std::ostream& os, Indent indent) const;
00098 
00100   void GenerateData() ;
00101 
00102 private:
00104   typename TMaskSample::Pointer m_Mask ;
00105   ClassLabelVectorType m_SelectedClassLabels ;
00106   ClassLabelType m_OtherClassLabel ;
00107 } ; // end of class
00108 
00109 
00110   } // end of namespace Statistics 
00111 } // end of namespace itk
00112 
00113 
00114 #ifndef ITK_MANUAL_INSTANTIATION
00115 #include "itkSampleClassifierWithMask.txx"
00116 #endif
00117 
00118 #endif
00119 
00120 
00121 
00122 
00123 
00124 
00125 

Generated at Tue Sep 16 11:32:08 2003 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000