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

itkErodeObjectMorphologyImageFilter.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkErodeObjectMorphologyImageFilter.h,v $
00005   Language:  C++
00006   Date:      $Date: 2008-10-14 19:20:33 $
00007   Version:   $Revision: 1.9 $
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 __itkErodeObjectMorphologyImageFilter_h
00018 #define __itkErodeObjectMorphologyImageFilter_h
00019 
00020 #include "itkObjectMorphologyImageFilter.h"
00021 
00022 namespace itk {
00023 
00043 template<class TInputImage, class TOutputImage, class TKernel>
00044 class ITK_EXPORT ErodeObjectMorphologyImageFilter : 
00045     public ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
00046 {
00047 public:
00049   typedef ErodeObjectMorphologyImageFilter Self;
00050   typedef ObjectMorphologyImageFilter<TInputImage, TOutputImage, TKernel>
00051                                            Superclass;
00052   typedef SmartPointer<Self>               Pointer;
00053   typedef SmartPointer<const Self>         ConstPointer;
00054 
00056   itkNewMacro(Self);  
00057 
00059   itkTypeMacro(ErodeObjectMorphologyImageFilter, ObjectMorphologyImageFilter);
00060 
00062   typedef typename Superclass::PixelType PixelType;
00063 
00065   typedef TKernel KernelType;
00066 
00068   typedef typename KernelType::ConstIterator KernelIteratorType;
00069 
00070   typedef NeighborhoodIterator<TOutputImage> OutputNeighborhoodIteratorType;
00071 
00073   typedef typename Superclass::DefaultBoundaryConditionType 
00074                                              DefaultBoundaryConditionType;
00075 
00076 
00078   void SetErodeValue( PixelType objectValue )
00079     {
00080     this->SetObjectValue( objectValue );
00081     }
00082 
00084   PixelType GetErodeValue( void )
00085     {
00086     return this->GetObjectValue();
00087     }
00088 
00090   itkSetMacro(BackgroundValue, PixelType);
00091 
00093   itkGetMacro(BackgroundValue, PixelType);
00094 
00095 #ifdef ITK_USE_CONCEPT_CHECKING
00096 
00097   itkConceptMacro(KernelGreaterThanIntCheck,
00098     (Concept::GreaterThanComparable<typename TKernel::PixelType, int>));
00099 
00101 #endif
00102 
00103 protected:
00104   ErodeObjectMorphologyImageFilter();
00105   ~ErodeObjectMorphologyImageFilter() {};
00106   void PrintSelf(std::ostream& os, Indent indent) const;
00107 
00112   void Evaluate(OutputNeighborhoodIteratorType &nit,
00113                 const KernelType &kernel);
00114 
00115 private:
00116   ErodeObjectMorphologyImageFilter(const Self&); //purposely not implemented
00117   void operator=(const Self&); //purposely not implemented
00118 
00119   PixelType m_BackgroundValue;
00120 
00121   // Default boundary condition for erosion filter, defaults to
00122   // NumericTraits<PixelType>::max()
00123   DefaultBoundaryConditionType m_ErodeBoundaryCondition;
00124 
00125 }; // end of class
00126 
00127 } // end namespace itk
00128   
00129 #ifndef ITK_MANUAL_INSTANTIATION
00130 #include "itkErodeObjectMorphologyImageFilter.txx"
00131 #endif
00132 
00133 #endif
00134 

Generated at Wed Nov 5 21:14:09 2008 for ITK by doxygen 1.5.1 written by Dimitri van Heesch, © 1997-2000