ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkBasicErodeImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright Insight Software Consortium
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0.txt
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  *=========================================================================*/
18 #ifndef itkBasicErodeImageFilter_h
19 #define itkBasicErodeImageFilter_h
20 
22 
23 namespace itk
24 {
45 template< typename TInputImage, typename TOutputImage, typename TKernel >
46 class ITK_TEMPLATE_EXPORT BasicErodeImageFilter:
47  public MorphologyImageFilter< TInputImage, TOutputImage, TKernel >
48 {
49 public:
55 
57  itkNewMacro(Self);
58 
60  itkTypeMacro(BasicErodeImageFilter,
62 
64  typedef typename Superclass::PixelType PixelType;
65 
67  typedef typename Superclass::KernelIteratorType KernelIteratorType;
68 
70  typedef typename Superclass::NeighborhoodIteratorType NeighborhoodIteratorType;
71 
73  typedef typename Superclass::KernelType KernelType;
74 
76  typedef typename Superclass::DefaultBoundaryConditionType DefaultBoundaryConditionType;
77 
79  itkStaticConstMacro(InputImageDimension, unsigned int,
80  TInputImage::ImageDimension);
81  itkStaticConstMacro(OutputImageDimension, unsigned int,
82  TOutputImage::ImageDimension);
83  itkStaticConstMacro(KernelDimension, unsigned int,
84  TKernel::NeighborhoodDimension);
86 
88  typedef typename TKernel::PixelType KernelPixelType;
89 
90 #ifdef ITK_USE_CONCEPT_CHECKING
91  // Begin concept checking
92  itkConceptMacro( InputConvertibleToOutputCheck,
94  itkConceptMacro( SameDimensionCheck1,
96  itkConceptMacro( SameDimensionCheck2,
98  itkConceptMacro( InputLessThanComparableCheck,
100  itkConceptMacro( KernelGreaterThanComparableCheck,
102  // End concept checking
103 #endif
104 
105 protected:
107  ~BasicErodeImageFilter() ITK_OVERRIDE {}
108 
115  virtual PixelType Evaluate(const NeighborhoodIteratorType & nit,
116  const KernelIteratorType kernelBegin,
117  const KernelIteratorType kernelEnd) ITK_OVERRIDE;
118 
119 private:
120  ITK_DISALLOW_COPY_AND_ASSIGN(BasicErodeImageFilter);
121 
122  // Default boundary condition for erosion filter, defaults to
123  // NumericTraits<PixelType>::max()
125 }; // end of class
126 } // end namespace itk
127 
128 #ifndef ITK_MANUAL_INSTANTIATION
129 #include "itkBasicErodeImageFilter.hxx"
130 #endif
131 
132 #endif
Superclass::KernelType KernelType
Base class for all process objects that output image data.
Base class for the morphological operations such as erosion and dialation.
DefaultBoundaryConditionType m_ErodeBoundaryCondition
gray scale erosion of an image
Superclass::NeighborhoodIteratorType NeighborhoodIteratorType
MorphologyImageFilter< TInputImage, TOutputImage, TKernel > Superclass
#define itkConceptMacro(name, concept)
Superclass::DefaultBoundaryConditionType DefaultBoundaryConditionType
SmartPointer< const Self > ConstPointer
Superclass::KernelIteratorType KernelIteratorType