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

itkGrayscaleErodeImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkGrayscaleErodeImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:28:49 $
00007   Version:   $Revision: 1.16 $
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 __itkGrayscaleErodeImageFilter_h
00018 #define __itkGrayscaleErodeImageFilter_h
00019 
00020 #include "itkMorphologyImageFilter.h"
00021 
00022 namespace itk {
00023 
00043 template<class TInputImage, class TOutputImage, class TKernel>
00044 class ITK_EXPORT GrayscaleErodeImageFilter : 
00045     public MorphologyImageFilter<TInputImage, TOutputImage, TKernel>
00046 {
00047 public:
00049   typedef GrayscaleErodeImageFilter Self;
00050   typedef MorphologyImageFilter<TInputImage, TOutputImage, TKernel>
00051   Superclass;
00052   typedef SmartPointer<Self>        Pointer;
00053   typedef SmartPointer<const Self>  ConstPointer;
00054   
00056   itkNewMacro(Self);  
00057 
00059   itkTypeMacro(GrayscaleErodeImageFilter, 
00060                MorphologyImageFilter);
00061   
00063   typedef typename Superclass::PixelType PixelType;
00064 
00066   typedef typename Superclass::KernelIteratorType  KernelIteratorType;
00067 
00069   typedef typename Superclass::NeighborhoodIteratorType NeighborhoodIteratorType ;
00070 
00072   typedef typename Superclass::KernelType KernelType;
00073 
00074 protected:
00075   GrayscaleErodeImageFilter() {};
00076   ~GrayscaleErodeImageFilter() {};
00077 
00084   virtual PixelType Evaluate(const NeighborhoodIteratorType &nit,
00085                              const KernelIteratorType kernelBegin,
00086                              const KernelIteratorType kernelEnd);
00087 
00088 private:
00089   GrayscaleErodeImageFilter(const Self&); //purposely not implemented
00090   void operator=(const Self&); //purposely not implemented
00091 
00092 } ; // end of class
00093 
00094 } // end namespace itk
00095   
00096 #ifndef ITK_MANUAL_INSTANTIATION
00097 #include "itkGrayscaleErodeImageFilter.txx"
00098 #endif
00099 
00100 #endif
00101 
00102 

Generated at Sun Jan 25 13:19:35 2004 for ITK by doxygen 1.3.3 written by Dimitri van Heesch, © 1997-2000