ITK  4.2.0
Insight Segmentation and Registration Toolkit
itkGrayscaleDilateImageFilter.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 __itkGrayscaleDilateImageFilter_h
19 #define __itkGrayscaleDilateImageFilter_h
20 
21 #include "itkKernelImageFilter.h"
26 #include "itkCastImageFilter.h"
28 #include "itkNeighborhood.h"
29 
30 namespace itk
31 {
52 template< class TInputImage, class TOutputImage, class TKernel >
53 class ITK_EXPORT GrayscaleDilateImageFilter:
54  public KernelImageFilter< TInputImage, TOutputImage, TKernel >
55 {
56 public:
62 
64  itkNewMacro(Self);
65 
67  itkTypeMacro(GrayscaleDilateImageFilter,
69 
71  itkStaticConstMacro(ImageDimension, unsigned int,
72  TInputImage::ImageDimension);
73 
75  typedef TInputImage InputImageType;
76  typedef TOutputImage OutputImageType;
77  typedef typename TInputImage::RegionType RegionType;
78  typedef typename TInputImage::SizeType SizeType;
79  typedef typename TInputImage::IndexType IndexType;
80  typedef typename TInputImage::PixelType PixelType;
81  typedef typename TInputImage::OffsetType OffsetType;
82  typedef typename Superclass::OutputImageRegionType OutputImageRegionType;
83 
88 
90 
94 
99 
101  typedef TKernel KernelType;
102 // typedef typename KernelType::Superclass KernelSuperClass;
103 // typedef Neighborhood< typename KernelType::PixelType, ImageDimension >
104 // KernelSuperClass;
105 
107  void SetKernel(const KernelType & kernel);
108 
110  void SetBoundary(const PixelType value);
111 
112  itkGetConstMacro(Boundary, PixelType);
113 
115  void SetAlgorithm(int algo);
116 
117  itkGetConstMacro(Algorithm, int);
118 
120  virtual void Modified() const;
121 
123  enum {
124  BASIC = 0,
125  HISTO = 1,
126  ANCHOR = 2,
127  VHGW = 3
128  } AlgorithmChoice;
129 
130  void SetNumberOfThreads(ThreadIdType nb);
131 
132 protected:
135  void PrintSelf(std::ostream & os, Indent indent) const;
136 
137  void GenerateData();
138 
139 private:
140  GrayscaleDilateImageFilter(const Self &); //purposely not implemented
141  void operator=(const Self &); //purposely not implemented
142 
144 
145  // the filters used internally
147 
149 
151 
153 
154  // and the name of the filter
156 
157  // the boundary condition need to be stored here
159 }; // end of class
160 } // end namespace itk
161 
162 #ifndef ITK_MANUAL_INSTANTIATION
163 #include "itkGrayscaleDilateImageFilter.hxx"
164 #endif
165 
166 #endif
167