ITK  4.4.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< class TInputImage, class TOutputImage, class TKernel > class KernelImageFilter;
29 
40 template< class TImage, class TKernel, class 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;
89 
91  void ThreadedGenerateData(const InputImageRegionType & outputRegionForThread,
92  ThreadIdType threadId);
93 
94  // should be set by the meta filter
96 
97 private:
98  VanHerkGilWermanErodeDilateImageFilter(const Self &); //purposely not implemented
99  void operator=(const Self &); //purposely not implemented
100 
102 
103 }; // end of class
104 } // end namespace itk
105 
106 #ifndef ITK_MANUAL_INSTANTIATION
107 #include "itkVanHerkGilWermanErodeDilateImageFilter.hxx"
108 #endif
109 
110 #endif
111