00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
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&);
00090 void operator=(const Self&);
00091
00092 } ;
00093
00094 }
00095
00096 #ifndef ITK_MANUAL_INSTANTIATION
00097 #include "itkGrayscaleErodeImageFilter.txx"
00098 #endif
00099
00100 #endif
00101
00102