ITK  4.4.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< class TInputImage, class TOutputImage, class TKernel >
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 
83  itkConceptMacro( KernelGreaterThanComparableCheck,
85 
87 #endif
88 
89 protected:
92  void PrintSelf(std::ostream & os, Indent indent) const;
93 
98  void Evaluate(OutputNeighborhoodIteratorType & nit,
99  const KernelType & kernel);
100 
101 private:
102  DilateObjectMorphologyImageFilter(const Self &); //purposely not implemented
103  void operator=(const Self &); //purposely not implemented
104 
105  // Default boundary condition for dilation filter, defaults to
106  // NumericTraits<PixelType>::NonpositiveMin()
108 }; // end of class
109 } // end namespace itk
110 
111 #ifndef ITK_MANUAL_INSTANTIATION
112 #include "itkDilateObjectMorphologyImageFilter.hxx"
113 #endif
114 
115 #endif
116