ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkKernelImageFilter.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 itkKernelImageFilter_h
19#define itkKernelImageFilter_h
20
21#include "itkBoxImageFilter.h"
22
23namespace itk
24{
25
26template <unsigned int VDimension>
38
39template< typename TInputImage, typename TOutputImage, typename TKernel /*=Neighborhood<bool,
40 TInputImage::ImageDimension>*/ >
41class ITK_TEMPLATE_EXPORT KernelImageFilter:
42 public BoxImageFilter< TInputImage, TOutputImage >
43{
44public:
45 ITK_DISALLOW_COPY_AND_MOVE(KernelImageFilter);
46
52
54 itkNewMacro(Self);
55
57 itkOverrideGetNameOfClassMacro(KernelImageFilter);
58
60 using InputImageType = TInputImage;
61 using RegionType = typename TInputImage::RegionType;
62 using SizeType = typename TInputImage::SizeType;
63 using IndexType = typename TInputImage::IndexType;
64 using OffsetType = typename TInputImage::OffsetType;
65
66 using InputPixelType = typename TInputImage::PixelType;
67
68 using OutputImageType = TOutputImage;
69 using OutputPixelType = typename TOutputImage::PixelType;
70
71 using KernelType = TKernel;
72
74 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
78 using RadiusType = typename TInputImage::SizeType;
79
81 virtual void
82 SetKernel(const KernelType & kernel);
83
84 itkGetConstReferenceMacro(Kernel, KernelType);
85
87 void
88 SetRadius(const RadiusType & radius) override;
89
90 void
91 SetRadius(const SizeValueType & radius) override
92 {
93 // needed because of the overloading of the method
95 }
96
97protected:
99 ~KernelImageFilter() override = default;
100
101 void
102 PrintSelf(std::ostream & os, Indent indent) const override;
103
106
107private:
108 template <typename T>
109 void
110 MakeKernel(const RadiusType & radius, T & kernel)
111 {
112 kernel.SetRadius(radius);
113 for (typename T::Iterator kit = kernel.Begin(); kit != kernel.End(); ++kit)
114 {
115 *kit = 1;
116 }
117 }
118
119 void
120 MakeKernel(const RadiusType & radius, FlatKernelType & kernel)
121 {
122 // set up a decomposable box structuring element which is
123 // much efficient with van Herk / Gil Werman filters
124 kernel = FlatKernelType::Box(radius);
125 assert(kernel.GetDecomposable());
126 }
127};
128} // namespace itk
129
130#ifndef ITK_MANUAL_INSTANTIATION
131# include "itkKernelImageFilter.hxx"
132#endif
133
134#endif
virtual void SetRadius(const RadiusType &radius)
A class to support a variety of flat structuring elements, including versions created by decompositio...
Control indentation during Print() invocation.
Definition itkIndent.h:50
SmartPointer< const Self > ConstPointer
typename TInputImage::SizeType RadiusType
typename TInputImage::IndexType IndexType
FlatStructuringElement<(Self::ImageDimension)> FlatKernelType
BoxImageFilter< TInputImage, TOutputImage > Superclass
void MakeKernel(const RadiusType &radius, T &kernel)
typename TInputImage::PixelType InputPixelType
~KernelImageFilter() override=default
typename TOutputImage::PixelType OutputPixelType
void PrintSelf(std::ostream &os, Indent indent) const override
virtual void SetKernel(const KernelType &kernel)
typename TInputImage::SizeType SizeType
void MakeKernel(const RadiusType &radius, FlatKernelType &kernel)
typename TInputImage::RegionType RegionType
SmartPointer< Self > Pointer
void SetRadius(const SizeValueType &radius) override
void SetRadius(const RadiusType &radius) override
typename TInputImage::OffsetType OffsetType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned long SizeValueType
Definition itkIntTypes.h:86