ITK  4.8.0
Insight Segmentation and Registration Toolkit
itkGrayscaleErodeImageFilter.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 itkGrayscaleErodeImageFilter_h
19 #define itkGrayscaleErodeImageFilter_h
20 
21 #include "itkKernelImageFilter.h"
26 #include "itkCastImageFilter.h"
28 #include "itkNeighborhood.h"
29 
30 namespace itk
31 {
52 template< typename TInputImage, typename TOutputImage, typename TKernel >
54  public KernelImageFilter< TInputImage, TOutputImage, TKernel >
55 {
56 public:
62 
64  itkNewMacro(Self);
65 
67  itkTypeMacro(GrayscaleErodeImageFilter,
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;
83 
86  BASIC = 0,
87  HISTO = 1,
88  ANCHOR = 2,
89  VHGW = 3
90  };
91 
96 
98 
102 
107 
109  typedef TKernel KernelType;
110 // typedef typename KernelType::Superclass KernelSuperClass;
111 // typedef Neighborhood< typename KernelType::PixelType, ImageDimension >
112 // KernelSuperClass;
113 
115  void SetKernel(const KernelType & kernel) ITK_OVERRIDE;
116 
118  void SetBoundary(const PixelType value);
119 
120  itkGetConstMacro(Boundary, PixelType);
121 
123  void SetAlgorithm(int algo);
124 
125  itkGetConstMacro(Algorithm, int);
126 
128  virtual void Modified() const ITK_OVERRIDE;
129 
130  void SetNumberOfThreads(ThreadIdType nb) ITK_OVERRIDE;
131 
132 protected:
134  ~GrayscaleErodeImageFilter() {}
135  void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
136 
137  void GenerateData() ITK_OVERRIDE;
138 
139 private:
140  GrayscaleErodeImageFilter(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 "itkGrayscaleErodeImageFilter.hxx"
164 #endif
165 
166 #endif
ConstantBoundaryCondition< InputImageType > DefaultBoundaryConditionType
KernelImageFilter< TInputImage, TOutputImage, TKernel > Superclass
virtual void Modified() const override
AnchorErodeImageFilter< TInputImage, FlatKernelType > AnchorFilterType
ImageBoundaryCondition< InputImageType > const * ImageBoundaryConditionConstPointerType
ImageBoundaryCondition< InputImageType > * ImageBoundaryConditionPointerType
FlatStructuringElement< itkGetStaticConstMacro(ImageDimension) > FlatKernelType
Base class for all process objects that output image data.
DefaultBoundaryConditionType m_BoundaryCondition
VanHerkGilWermanErodeImageFilter< TInputImage, FlatKernelType > VHGWFilterType
BasicErodeImageFilter< TInputImage, TOutputImage, TKernel > BasicFilterType
Superclass::OutputImageRegionType OutputImageRegionType
A base class for all the filters working on an arbitrary shaped neighborhood.
MovingHistogramErodeImageFilter< TInputImage, TOutputImage, TKernel > HistogramFilterType
unsigned int ThreadIdType
Definition: itkIntTypes.h:159
void PrintSelf(std::ostream &os, Indent indent) const override
void SetBoundary(const PixelType value)
A class to support a variety of flat structuring elements, including versions created by decompositio...
HistogramFilterType::Pointer m_HistogramFilter
gray scale erosion of an image
CastImageFilter< TInputImage, TOutputImage > CastFilterType
Control indentation during Print() invocation.
Definition: itkIndent.h:49
Superclass::OutputImageRegionType OutputImageRegionType
void SetKernel(const KernelType &kernel) override
gray scale dilation of an image
Casts input pixels to output pixel type.
void SetNumberOfThreads(ThreadIdType nb) override