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: 2002/12/17 17:50:35 $
00007   Version:   $Revision: 1.12 $
00008 
00009   Copyright (c) 2002 Insight 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 KernelType &kernel);
00086 
00087 private:
00088   GrayscaleErodeImageFilter(const Self&); //purposely not implemented
00089   void operator=(const Self&); //purposely not implemented
00090 
00091 } ; // end of class
00092 
00093 } // end namespace itk
00094   
00095 #ifndef ITK_MANUAL_INSTANTIATION
00096 #include "itkGrayscaleErodeImageFilter.txx"
00097 #endif
00098 
00099 #endif
00100 
00101 

Generated at Fri May 21 01:14:51 2004 for ITK by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2000