ITK  4.13.0
Insight Segmentation and Registration Toolkit
itkVanHerkGilWermanErodeDilateImageFilter.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 itkVanHerkGilWermanErodeDilateImageFilter_h
19 #define itkVanHerkGilWermanErodeDilateImageFilter_h
20 
21 #include "itkKernelImageFilter.h"
22 #include "itkProgressReporter.h"
23 #include "itkBresenhamLine.h"
24 
25 namespace itk
26 {
27 
28 template< typename TInputImage, typename TOutputImage, typename TKernel > class KernelImageFilter;
29 
40 template< typename TImage, typename TKernel, typename TFunction1 >
41 class ITK_TEMPLATE_EXPORT VanHerkGilWermanErodeDilateImageFilter:
42  public KernelImageFilter< TImage, TImage, TKernel >
43 {
44 public:
45 
52 
56  typedef TKernel KernelType;
57 
58  typedef TImage InputImageType;
59  typedef typename InputImageType::Pointer InputImagePointer;
60  typedef typename InputImageType::ConstPointer InputImageConstPointer;
61  typedef typename InputImageType::RegionType InputImageRegionType;
62  typedef typename InputImageType::PixelType InputImagePixelType;
63  typedef typename TImage::IndexType IndexType;
64  typedef typename TImage::SizeType SizeType;
65 
67  itkStaticConstMacro(InputImageDimension, unsigned int,
68  TImage::ImageDimension);
69  itkStaticConstMacro(OutputImageDimension, unsigned int,
70  TImage::ImageDimension);
72 
74  itkNewMacro(Self);
75 
79 
81  itkSetMacro(Boundary, InputImagePixelType);
82  itkGetConstMacro(Boundary, InputImagePixelType);
84 
85 protected:
88  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
89 
91  void ThreadedGenerateData(const InputImageRegionType & outputRegionForThread,
92  ThreadIdType threadId) ITK_OVERRIDE;
93 
94  // should be set by the meta filter
96 
97 private:
98  ITK_DISALLOW_COPY_AND_ASSIGN(VanHerkGilWermanErodeDilateImageFilter);
99 
101 
102 }; // end of class
103 } // end namespace itk
104 
105 #ifndef ITK_MANUAL_INSTANTIATION
106 #include "itkVanHerkGilWermanErodeDilateImageFilter.hxx"
107 #endif
108 
109 #endif
class to implement erosions and dilations using anchor methods. This is the base class that must be i...
Base class for all process objects that output image data.
BresenhamLine< itkGetStaticConstMacro(InputImageDimension) > BresType
A base class for all the filters working on an arbitrary shaped neighborhood.
unsigned int ThreadIdType
Definition: itkIntTypes.h:159
InputImageType::PixelType InputImagePixelType
Base class for filters that take an image as input and produce an image as output.
Control indentation during Print() invocation.
Definition: itkIndent.h:49