ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkBinaryDilateImageFilter.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 itkBinaryDilateImageFilter_h
19 #define itkBinaryDilateImageFilter_h
20 
21 #include <vector>
22 #include <queue>
25 
26 namespace itk
27 {
65 template< typename TInputImage, typename TOutputImage, typename TKernel >
66 class ITK_TEMPLATE_EXPORT BinaryDilateImageFilter:
67  public BinaryMorphologyImageFilter< TInputImage, TOutputImage, TKernel >
68 {
69 public:
70 
72  itkStaticConstMacro(InputImageDimension, unsigned int,
73  TInputImage::ImageDimension);
74  itkStaticConstMacro(OutputImageDimension, unsigned int,
75  TOutputImage::ImageDimension);
77 
79  itkStaticConstMacro(KernelDimension, unsigned int,
80  TKernel::NeighborhoodDimension);
81 
83  typedef TInputImage InputImageType;
84  typedef TOutputImage OutputImageType;
85  typedef TKernel KernelType;
86 
91 
94 
96  itkNewMacro(Self);
97 
100 
102  typedef typename KernelType::ConstIterator KernelIteratorType;
103 
105  typedef typename InputImageType::PixelType InputPixelType;
106  typedef typename OutputImageType::PixelType OutputPixelType;
108  typedef typename InputImageType::OffsetType OffsetType;
110 
111  typedef typename InputImageType::RegionType InputImageRegionType;
112  typedef typename OutputImageType::RegionType OutputImageRegionType;
114 
118  void SetDilateValue(const InputPixelType & value)
119  { this->SetForegroundValue(value); }
120 
125  { return this->GetForegroundValue(); }
126 
127 protected:
129  virtual ~BinaryDilateImageFilter() ITK_OVERRIDE {}
130  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
131 
132  void GenerateData() ITK_OVERRIDE;
133 
134  // type inherited from the superclass
136 
137 private:
138  ITK_DISALLOW_COPY_AND_ASSIGN(BinaryDilateImageFilter);
139 };
140 } // end namespace itk
141 
142 #ifndef ITK_MANUAL_INSTANTIATION
143 #include "itkBinaryDilateImageFilter.hxx"
144 #endif
145 
146 #endif
NumericTraits< InputPixelType >::RealType InputRealType
InputImageType::PixelType InputPixelType
InputImageType::RegionType InputImageRegionType
OutputImageType::RegionType OutputImageRegionType
TInputImage::PixelType InputPixelType
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Base class for all process objects that output image data.
Superclass::NeighborIndexContainer NeighborIndexContainer
BinaryMorphologyImageFilter< InputImageType, OutputImageType, KernelType > Superclass
InputImageType::OffsetType OffsetType
SmartPointer< const Self > ConstPointer
KernelType::ConstIterator KernelIteratorType
OutputImageType::PixelType OutputPixelType
Base class for fast binary dilation and erosion.
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Define additional traits for native types such as int or float.
InputImageType::SizeType InputSizeType
TOutputImage OutputImageType
void SetDilateValue(const InputPixelType &value)