ITK  4.8.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< typename TInputImage, typename TOutputImage, typename TKernel >
51  public MorphologyImageFilter< TInputImage, TOutputImage, TKernel >
52 {
53 public:
59 
61  itkNewMacro(Self);
62 
66 
68  typedef typename Superclass::PixelType PixelType;
69 
72 
75 
78 
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  // Begin concept checking
96  itkConceptMacro( SameDimensionCheck1,
98  itkConceptMacro( SameDimensionCheck2,
100  itkConceptMacro( InputConvertibleToOutputCheck,
102  itkConceptMacro( KernelConvertibleToInputCheck,
104  itkConceptMacro( InputAdditiveOperatorsCheck,
106  itkConceptMacro( InputGreaterThanComparableCheck,
108  itkConceptMacro( KernelGreaterThanComparableCheck,
110  // End concept checking
111 #endif
112 
113 protected:
116 
125  const KernelIteratorType kernelBegin,
126  const KernelIteratorType kernelEnd) ITK_OVERRIDE;
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
ConstantBoundaryCondition< InputImageType > DefaultBoundaryConditionType
PixelType Evaluate(const NeighborhoodIteratorType &nit, const KernelIteratorType kernelBegin, const KernelIteratorType kernelEnd) override
MorphologyImageFilter< TInputImage, TOutputImage, TKernel > Superclass
Base class for all process objects that output image data.
KernelType::ConstIterator KernelIteratorType
Base class for the morphological operations such as erosion and dialation.
ConstNeighborhoodIterator< TInputImage > NeighborhoodIteratorType
Superclass::DefaultBoundaryConditionType DefaultBoundaryConditionType
TInputImage::PixelType PixelType
Superclass::NeighborhoodIteratorType NeighborhoodIteratorType
#define itkConceptMacro(name, concept)