ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkGrayscaleFunctionDilateImageFilter.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 __itkGrayscaleFunctionDilateImageFilter_h
19 #define __itkGrayscaleFunctionDilateImageFilter_h
20 
22 
23 namespace itk
24 {
49 template< class TInputImage, class TOutputImage, class TKernel >
51  public MorphologyImageFilter< TInputImage, TOutputImage, TKernel >
52 {
53 public:
59 
61  itkNewMacro(Self);
62 
66 
68  typedef typename Superclass::PixelType PixelType;
69 
71  typedef typename Superclass::KernelIteratorType KernelIteratorType;
72 
74  typedef typename Superclass::NeighborhoodIteratorType NeighborhoodIteratorType;
75 
77  typedef typename Superclass::KernelType KernelType;
78 
80  typedef typename Superclass::DefaultBoundaryConditionType DefaultBoundaryConditionType;
81 
83  itkStaticConstMacro(InputImageDimension, unsigned int,
84  TInputImage::ImageDimension);
85  itkStaticConstMacro(OutputImageDimension, unsigned int,
86  TOutputImage::ImageDimension);
87  itkStaticConstMacro(KernelDimension, unsigned int,
88  TKernel::NeighborhoodDimension);
90 
92  typedef typename TKernel::PixelType KernelPixelType;
93 
94 #ifdef ITK_USE_CONCEPT_CHECKING
95 
96  itkConceptMacro( SameDimensionCheck1,
98  itkConceptMacro( SameDimensionCheck2,
100  itkConceptMacro( InputConvertibleToOutputCheck,
102  itkConceptMacro( KernelConvertibleToInputCheck,
104  itkConceptMacro( InputAdditiveOperatorsCheck,
106  itkConceptMacro( InputGreaterThanComparableCheck,
108  itkConceptMacro( KernelGreaterThanComparableCheck,
110 
112 #endif
113 protected:
116 
124  PixelType Evaluate(const NeighborhoodIteratorType & nit,
125  const KernelIteratorType kernelBegin,
126  const KernelIteratorType kernelEnd);
127 
128 private:
129  GrayscaleFunctionDilateImageFilter(const Self &); //purposely not implemented
130  void operator=(const Self &); //purposely not implemented
131 
132  // Default boundary condition for dilation filter, defaults to
133  // NumericTraits<PixelType>::NonpositiveMin()
135 }; // end of class
136 } // end namespace itk
137 
138 #ifndef ITK_MANUAL_INSTANTIATION
139 #include "itkGrayscaleFunctionDilateImageFilter.hxx"
140 #endif
141 
142 #endif
143