ITK  4.10.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 >
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
95  InputImagePixelType m_Boundary;
96 
97 private:
98  VanHerkGilWermanErodeDilateImageFilter(const Self &) ITK_DELETE_FUNCTION;
99  void operator=(const Self &) ITK_DELETE_FUNCTION;
100 
101  typedef BresenhamLine< itkGetStaticConstMacro(InputImageDimension) > BresType;
102 
103 }; // end of class
104 } // end namespace itk
105 
106 #ifndef ITK_MANUAL_INSTANTIATION
107 #include "itkVanHerkGilWermanErodeDilateImageFilter.hxx"
108 #endif
109 
110 #endif
void PrintSelf(std::ostream &os, Indent indent) const override
class to implement erosions and dilations using anchor methods. This is the base class that must be i...
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes...
Definition: itkArray.h:30
void ThreadedGenerateData(const InputImageRegionType &outputRegionForThread, ThreadIdType threadId) override
A base class for all the filters working on an arbitrary shaped neighborhood.
unsigned int ThreadIdType
Definition: itkIntTypes.h:159
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