ITK  5.4.0
Insight Toolkit
itkBasicDilateImageFilter.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 * https://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 itkBasicDilateImageFilter_h
19#define itkBasicDilateImageFilter_h
20
22
23namespace itk
24{
47template <typename TInputImage, typename TOutputImage, typename TKernel>
48class ITK_TEMPLATE_EXPORT BasicDilateImageFilter : public MorphologyImageFilter<TInputImage, TOutputImage, TKernel>
49{
50public:
51 ITK_DISALLOW_COPY_AND_MOVE(BasicDilateImageFilter);
52
58
60 itkNewMacro(Self);
61
63 itkOverrideGetNameOfClassMacro(BasicDilateImageFilter);
64
66 using typename Superclass::PixelType;
67
69 using typename Superclass::KernelIteratorType;
70
72 using typename Superclass::NeighborhoodIteratorType;
73
75 using typename Superclass::KernelType;
76
78 using typename Superclass::DefaultBoundaryConditionType;
79
81 static constexpr unsigned int InputImageDimension = TInputImage::ImageDimension;
82 static constexpr unsigned int OutputImageDimension = TOutputImage::ImageDimension;
83 static constexpr unsigned int KernelDimension = TKernel::NeighborhoodDimension;
84
86 using KernelPixelType = typename TKernel::PixelType;
87
88#ifdef ITK_USE_CONCEPT_CHECKING
89 // Begin concept checking
93 itkConceptMacro(InputGreaterThanComparableCheck, (Concept::GreaterThanComparable<PixelType>));
94 itkConceptMacro(KernelGreaterThanComparableCheck, (Concept::GreaterThanComparable<KernelPixelType>));
95 // End concept checking
96#endif
97
98protected:
100 ~BasicDilateImageFilter() override = default;
101
110 const KernelIteratorType kernelBegin,
111 const KernelIteratorType kernelEnd) override;
112
113private:
114 // Default boundary condition for dilation filter, defaults to
115 // NumericTraits<PixelType>::NonpositiveMin()
116 DefaultBoundaryConditionType m_DilateBoundaryCondition{};
117}; // end of class
118} // end namespace itk
119
120#ifndef ITK_MANUAL_INSTANTIATION
121# include "itkBasicDilateImageFilter.hxx"
122#endif
123
124#endif
Grayscale dilation of an image.
PixelType Evaluate(const NeighborhoodIteratorType &nit, const KernelIteratorType kernelBegin, const KernelIteratorType kernelEnd) override
~BasicDilateImageFilter() override=default
typename TKernel::PixelType KernelPixelType
Base class for all process objects that output image data.
Base class for the morphological operations such as erosion and dilation.
typename KernelType::ConstIterator KernelIteratorType
typename TInputImage::PixelType PixelType
The base class for all process objects (source, filters, mappers) in the Insight data processing pipe...
#define itkConceptMacro(name, concept)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....