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

itkGrayscaleFunctionDilateImageFilter.h

Go to the documentation of this file.
00001 /*========================================================================= 00002 00003 Program: Insight Segmentation & Registration Toolkit 00004 Module: $RCSfile: itkGrayscaleFunctionDilateImageFilter.h,v $ 00005 Language: C++ 00006 Date: $Date: 2003/09/10 14:28:49 $ 00007 Version: $Revision: 1.13 $ 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 __itkGrayscaleFunctionDilateImageFilter_h 00018 #define __itkGrayscaleFunctionDilateImageFilter_h 00019 00020 #include "itkMorphologyImageFilter.h" 00021 00022 namespace itk { 00023 00047 template<class TInputImage, class TOutputImage, class TKernel> 00048 class ITK_EXPORT GrayscaleFunctionDilateImageFilter : 00049 public MorphologyImageFilter<TInputImage, TOutputImage, TKernel> 00050 { 00051 public: 00053 typedef GrayscaleFunctionDilateImageFilter Self; 00054 typedef MorphologyImageFilter<TInputImage, TOutputImage, TKernel> 00055 Superclass; 00056 typedef SmartPointer<Self> Pointer; 00057 typedef SmartPointer<const Self> ConstPointer; 00058 00060 itkNewMacro(Self); 00061 00063 itkTypeMacro(GrayscaleFunctionDilateImageFilter, 00064 MorphologyImageFilter); 00065 00067 typedef typename Superclass::PixelType PixelType; 00068 00070 typedef typename Superclass::KernelIteratorType KernelIteratorType; 00071 00073 typedef typename Superclass::NeighborhoodIteratorType NeighborhoodIteratorType ; 00074 00076 typedef typename Superclass::KernelType KernelType; 00077 00078 protected: 00079 GrayscaleFunctionDilateImageFilter() {}; 00080 ~GrayscaleFunctionDilateImageFilter() {}; 00081 00089 PixelType Evaluate(const NeighborhoodIteratorType &nit, 00090 const KernelIteratorType kernelBegin, 00091 const KernelIteratorType kernelEnd); 00092 00093 private: 00094 GrayscaleFunctionDilateImageFilter(const Self&); //purposely not implemented 00095 void operator=(const Self&); //purposely not implemented 00096 } ; // end of class 00097 00098 } // end namespace itk 00099 00100 #ifndef ITK_MANUAL_INSTANTIATION 00101 #include "itkGrayscaleFunctionDilateImageFilter.txx" 00102 #endif 00103 00104 #endif 00105 00106

Generated at Sun Apr 1 02:31:42 2007 for ITK by doxygen 1.3.8 written by Dimitri van Heesch, © 1997-2000