ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkDilateObjectMorphologyImageFilter.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 itkDilateObjectMorphologyImageFilter_h
19 #define itkDilateObjectMorphologyImageFilter_h
20 
22 
23 namespace itk
24 {
45 template< typename TInputImage, typename TOutputImage, typename TKernel >
46 class ITK_TEMPLATE_EXPORT DilateObjectMorphologyImageFilter:
47  public ObjectMorphologyImageFilter< TInputImage, TOutputImage, TKernel >
48 {
49 public:
53 
56 
58  itkNewMacro(Self);
59 
62 
64  typedef typename Superclass::PixelType PixelType;
65 
67  typedef TKernel KernelType;
68 
70  typedef typename KernelType::ConstIterator KernelIteratorType;
71 
74 
75  typedef typename Superclass::DefaultBoundaryConditionType
77 
79  typedef typename TKernel::PixelType KernelPixelType;
80 
81 #ifdef ITK_USE_CONCEPT_CHECKING
82  // Begin concept checking
83  itkConceptMacro( KernelGreaterThanComparableCheck,
85  // End concept checking
86 #endif
87 
88 protected:
91  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
92 
97  void Evaluate(OutputNeighborhoodIteratorType & nit,
98  const KernelType & kernel) ITK_OVERRIDE;
99 
100 private:
101  ITK_DISALLOW_COPY_AND_ASSIGN(DilateObjectMorphologyImageFilter);
102 
103  // Default boundary condition for dilation filter, defaults to
104  // NumericTraits<PixelType>::NonpositiveMin()
106 }; // end of class
107 } // end namespace itk
108 
109 #ifndef ITK_MANUAL_INSTANTIATION
110 #include "itkDilateObjectMorphologyImageFilter.hxx"
111 #endif
112 
113 #endif
NeighborhoodIterator< TOutputImage > OutputNeighborhoodIteratorType
Superclass::DefaultBoundaryConditionType DefaultBoundaryConditionType
Base class for all process objects that output image data.
ObjectMorphologyImageFilter< TInputImage, TOutputImage, TKernel > Superclass
Control indentation during Print() invocation.
Definition: itkIndent.h:49
#define itkConceptMacro(name, concept)
Base class for the morphological operations being applied to isolated objects in an image...
Defines iteration of a local N-dimensional neighborhood of pixels across an itk::Image.