ITK  5.1.0
Insight Toolkit
itkGrayscaleMorphologicalClosingImageFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2  *
3  * Copyright NumFOCUS
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 itkGrayscaleMorphologicalClosingImageFilter_h
19 #define itkGrayscaleMorphologicalClosingImageFilter_h
20 
21 #include "itkKernelImageFilter.h"
29 #include "itkCastImageFilter.h"
31 #include "itkNeighborhood.h"
32 
33 namespace itk
34 {
51 template <typename TInputImage, typename TOutputImage, typename TKernel>
53  : public KernelImageFilter<TInputImage, TOutputImage, TKernel>
54 {
55 public:
56  ITK_DISALLOW_COPY_AND_ASSIGN(GrayscaleMorphologicalClosingImageFilter);
57 
63 
65  itkNewMacro(Self);
66 
69 
71  static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
72 
75  {
76  BASIC = 0,
77  HISTO = 1,
78  ANCHOR = 2,
79  VHGW = 3
80  };
81 
83  using InputImageType = TInputImage;
84  using OutputImageType = TOutputImage;
86  using SizeType = typename TInputImage::SizeType;
88  using PixelType = typename TInputImage::PixelType;
89  using OffsetType = typename TInputImage::OffsetType;
90  using OutputImageRegionType = typename Superclass::OutputImageRegionType;
91 
92  using FlatKernelType = FlatStructuringElement<(Self::ImageDimension)>;
101 
103  using KernelType = TKernel;
104  // using KernelSuperclass = typename KernelType::Superclass;
105  // using KernelSuperclass = Neighborhood< typename KernelType::PixelType, ImageDimension >;
106 
108  void
109  SetKernel(const KernelType & kernel) override;
110 
112  void
113  SetAlgorithm(int algo);
114  itkGetConstMacro(Algorithm, int);
116 
119  void
120  Modified() const override;
121 
124  itkSetMacro(SafeBorder, bool);
125  itkGetConstReferenceMacro(SafeBorder, bool);
126  itkBooleanMacro(SafeBorder);
128 
129 protected:
131  ~GrayscaleMorphologicalClosingImageFilter() override = default;
132  void
133  PrintSelf(std::ostream & os, Indent indent) const override;
134 
135  void
136  GenerateData() override;
137 
138 private:
139  // the filters used internally
141 
143 
145 
147 
149 
151 
153 
154  // and the name of the filter
156 
158 }; // end of class
159 } // end namespace itk
160 
161 #ifndef ITK_MANUAL_INSTANTIATION
162 # include "itkGrayscaleMorphologicalClosingImageFilter.hxx"
163 #endif
164 
165 #endif
itkVanHerkGilWermanDilateImageFilter.h
itk::CastImageFilter
Casts input pixels to output pixel type.
Definition: itkCastImageFilter.h:104
itkAnchorCloseImageFilter.h
itk::GrayscaleMorphologicalClosingImageFilter::m_SafeBorder
bool m_SafeBorder
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:157
itkMovingHistogramDilateImageFilter.h
itk::GrayscaleMorphologicalClosingImageFilter::m_BasicErodeFilter
BasicErodeFilterType::Pointer m_BasicErodeFilter
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:144
itk::BasicDilateImageFilter
gray scale dilation of an image
Definition: itkBasicDilateImageFilter.h:48
itk::FlatStructuringElement
A class to support a variety of flat structuring elements, including versions created by decompositio...
Definition: itkKernelImageFilter.h:27
itk::GrayscaleMorphologicalClosingImageFilter::m_VanHerkGilWermanErodeFilter
VanHerkGilWermanErodeFilterType::Pointer m_VanHerkGilWermanErodeFilter
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:150
itk::GTest::TypedefsAndConstructors::Dimension2::SizeType
ImageBaseType::SizeType SizeType
Definition: itkGTestTypedefsAndConstructors.h:49
itk::BasicErodeImageFilter
gray scale erosion of an image
Definition: itkBasicErodeImageFilter.h:46
itk::SmartPointer< Self >
itk::Indent
Control indentation during Print() invocation.
Definition: itkIndent.h:49
itkCastImageFilter.h
itk::GrayscaleMorphologicalClosingImageFilter
gray scale dilation of an image
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:52
itk::MovingHistogramErodeImageFilter
gray scale erosion of an image
Definition: itkMovingHistogramErodeImageFilter.h:42
itkNeighborhood.h
itk::VanHerkGilWermanErodeImageFilter
Definition: itkVanHerkGilWermanErodeImageFilter.h:41
itk::BoxImageFilter::OffsetType
typename TInputImage::OffsetType OffsetType
Definition: itkBoxImageFilter.h:62
itkConstantBoundaryCondition.h
itk::GTest::TypedefsAndConstructors::Dimension2::IndexType
ImageBaseType::IndexType IndexType
Definition: itkGTestTypedefsAndConstructors.h:50
itk::ImageSource
Base class for all process objects that output image data.
Definition: itkImageSource.h:67
itkKernelImageFilter.h
itk::BoxImageFilter::IndexType
typename TInputImage::IndexType IndexType
Definition: itkBoxImageFilter.h:61
itk::GrayscaleMorphologicalClosingImageFilter::m_HistogramDilateFilter
HistogramDilateFilterType::Pointer m_HistogramDilateFilter
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:142
itk::GrayscaleMorphologicalClosingImageFilter::m_BasicDilateFilter
BasicDilateFilterType::Pointer m_BasicDilateFilter
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:146
itkMovingHistogramErodeImageFilter.h
itk::GTest::TypedefsAndConstructors::Dimension2::RegionType
ImageBaseType::RegionType RegionType
Definition: itkGTestTypedefsAndConstructors.h:54
itk::AnchorCloseImageFilter
Definition: itkAnchorCloseImageFilter.h:27
itk::ImageToImageFilter::InputImageType
TInputImage InputImageType
Definition: itkImageToImageFilter.h:129
itk::GrayscaleMorphologicalClosingImageFilter::m_HistogramErodeFilter
HistogramErodeFilterType::Pointer m_HistogramErodeFilter
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:140
itk::ImageSource::OutputImageRegionType
typename OutputImageType::RegionType OutputImageRegionType
Definition: itkImageSource.h:92
itkBasicErodeImageFilter.h
itk::GrayscaleMorphologicalClosingImageFilter::PixelType
typename TInputImage::PixelType PixelType
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:88
itk
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
Definition: itkArray.h:26
itk::MovingHistogramDilateImageFilter
gray scale dilation of an image
Definition: itkMovingHistogramDilateImageFilter.h:43
itkVanHerkGilWermanErodeImageFilter.h
itk::GrayscaleMorphologicalClosingImageFilter::m_VanHerkGilWermanDilateFilter
VanHerkGilWermanDilateFilterType::Pointer m_VanHerkGilWermanDilateFilter
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:148
itk::ProcessObject
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
Definition: itkProcessObject.h:138
itk::GrayscaleMorphologicalClosingImageFilter::m_Algorithm
int m_Algorithm
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:155
itk::KernelImageFilter::KernelType
TKernel KernelType
Definition: itkKernelImageFilter.h:71
itk::VanHerkGilWermanDilateImageFilter
Definition: itkVanHerkGilWermanDilateImageFilter.h:40
itk::BoxImageFilter::SizeType
typename TInputImage::SizeType SizeType
Definition: itkBoxImageFilter.h:60
itk::KernelImageFilter
A base class for all the filters working on an arbitrary shaped neighborhood.
Definition: itkKernelImageFilter.h:41
itk::GrayscaleMorphologicalClosingImageFilter::m_AnchorFilter
AnchorFilterType::Pointer m_AnchorFilter
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:152
itk::GrayscaleMorphologicalClosingImageFilter::AlgorithmType
AlgorithmType
Definition: itkGrayscaleMorphologicalClosingImageFilter.h:74
itk::ImageSource::OutputImageType
TOutputImage OutputImageType
Definition: itkImageSource.h:90
itk::BoxImageFilter::RegionType
typename TInputImage::RegionType RegionType
Definition: itkBoxImageFilter.h:59
itkBasicDilateImageFilter.h