ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkInverseDeconvolutionImageFilter.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 itkInverseDeconvolutionImageFilter_h
19#define itkInverseDeconvolutionImageFilter_h
20
22#include "itkMath.h"
23
24namespace itk
25{
55template <typename TInputImage,
56 typename TKernelImage = TInputImage,
57 typename TOutputImage = TInputImage,
58 typename TInternalPrecision = double>
59class ITK_TEMPLATE_EXPORT InverseDeconvolutionImageFilter
60 : public FFTConvolutionImageFilter<TInputImage, TKernelImage, TOutputImage, TInternalPrecision>
61{
62public:
63 ITK_DISALLOW_COPY_AND_MOVE(InverseDeconvolutionImageFilter);
64
69
71 itkNewMacro(Self);
72
74 itkOverrideGetNameOfClassMacro(InverseDeconvolutionImageFilter);
75
77 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
78
79 using InputImageType = TInputImage;
80 using OutputImageType = TOutputImage;
81 using KernelImageType = TKernelImage;
82 using typename Superclass::InputPixelType;
83 using typename Superclass::OutputPixelType;
84 using typename Superclass::KernelPixelType;
85 using typename Superclass::InputIndexType;
86 using typename Superclass::OutputIndexType;
87 using typename Superclass::KernelIndexType;
88 using typename Superclass::InputSizeType;
89 using typename Superclass::OutputSizeType;
90 using typename Superclass::KernelSizeType;
91 using typename Superclass::SizeValueType;
92 using typename Superclass::InputRegionType;
93 using typename Superclass::OutputRegionType;
94 using typename Superclass::KernelRegionType;
95
97 using typename Superclass::InternalImageType;
102
107 itkSetMacro(KernelZeroMagnitudeThreshold, double);
108 itkGetConstMacro(KernelZeroMagnitudeThreshold, double);
110protected:
113
115 void
116 GenerateData() override;
117
118 void
119 PrintSelf(std::ostream & os, Indent indent) const override;
120
121private:
123};
124
125namespace Functor
126{
127template <typename TInput1, typename TInput2, typename TOutput>
128class ITK_TEMPLATE_EXPORT InverseDeconvolutionFunctor
129{
130public:
133
134 bool
136 {
137 return true;
138 }
139
141
142 inline TOutput
143 operator()(const TInput1 & I, const TInput2 & H) const
144 {
145 const double absH = itk::Math::abs(H);
146 TOutput value{};
148 {
149 value = static_cast<TOutput>(I / H);
150 }
151 return value;
152 }
153
157 void
162 double
167
168private:
170};
171} // namespace Functor
172
173} // namespace itk
174
175#ifndef ITK_MANUAL_INSTANTIATION
176# include "itkInverseDeconvolutionImageFilter.hxx"
177#endif
178
179#endif
TOutput operator()(const TInput1 &I, const TInput2 &H) const
bool operator==(const InverseDeconvolutionFunctor &) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(InverseDeconvolutionFunctor)
Control indentation during Print() invocation.
Definition itkIndent.h:50
~InverseDeconvolutionImageFilter() override=default
FFTConvolutionImageFilter< TInputImage, TKernelImage, TOutputImage, TInternalPrecision > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
Implements transparent reference counting.
bool abs(bool x)
Definition itkMath.h:836
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....