ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkWienerDeconvolutionImageFilter.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 itkWienerDeconvolutionImageFilter_h
19#define itkWienerDeconvolutionImageFilter_h
20
22#include "itkMath.h"
23
24namespace itk
25{
76template <typename TInputImage,
77 typename TKernelImage = TInputImage,
78 typename TOutputImage = TInputImage,
79 typename TInternalPrecision = double>
80class ITK_TEMPLATE_EXPORT WienerDeconvolutionImageFilter
81 : public InverseDeconvolutionImageFilter<TInputImage, TKernelImage, TOutputImage, TInternalPrecision>
82{
83public:
84 ITK_DISALLOW_COPY_AND_MOVE(WienerDeconvolutionImageFilter);
85
90
92 itkNewMacro(Self);
93
95 itkOverrideGetNameOfClassMacro(WienerDeconvolutionImageFilter);
96
98 static constexpr unsigned int ImageDimension = TInputImage::ImageDimension;
99
100 using InputImageType = TInputImage;
101 using OutputImageType = TOutputImage;
102 using KernelImageType = TKernelImage;
103 using typename Superclass::InputPixelType;
104 using typename Superclass::OutputPixelType;
105 using typename Superclass::KernelPixelType;
106 using typename Superclass::InputIndexType;
107 using typename Superclass::OutputIndexType;
108 using typename Superclass::KernelIndexType;
109 using typename Superclass::InputSizeType;
110 using typename Superclass::OutputSizeType;
111 using typename Superclass::KernelSizeType;
112 using typename Superclass::SizeValueType;
113 using typename Superclass::InputRegionType;
114 using typename Superclass::OutputRegionType;
115 using typename Superclass::KernelRegionType;
116
118 using typename Superclass::InternalImageType;
120 using typename Superclass::InternalComplexType;
123
127 itkSetMacro(NoiseVariance, double);
128 itkGetConstMacro(NoiseVariance, double);
130protected:
133
135 void
136 GenerateData() override;
137
138 void
139 PrintSelf(std::ostream & os, Indent indent) const override;
140
141private:
143};
144
145namespace Functor
146{
147template <typename TPixel>
148class ITK_TEMPLATE_EXPORT WienerDeconvolutionFunctor
149{
150public:
157
158 bool
160 {
161 return true;
162 }
163
165
166 inline TPixel
167 operator()(const TPixel & I, const TPixel & H) const
168 {
170
171 // We estimate the power spectral density of the output image to
172 // be the same as the power spectral density of the blurred input
173 // minus the power spectral density of the noise.
174 TPixel Pf = std::norm(I);
175
176 TPixel denominator = std::norm(H) + (Pn / (Pf - Pn));
177 TPixel value{};
179 {
180 value = I * (std::conj(H) / denominator);
181 }
182
183 return value;
184 }
185
189 void
194 double
199
203 void
208 double
213
214private:
217};
218} // namespace Functor
219
220} // namespace itk
221
222#ifndef ITK_MANUAL_INSTANTIATION
223# include "itkWienerDeconvolutionImageFilter.hxx"
224#endif
225
226#endif
bool operator==(const WienerDeconvolutionFunctor &) const
WienerDeconvolutionFunctor(const WienerDeconvolutionFunctor &f)
TPixel operator()(const TPixel &I, const TPixel &H) const
ITK_UNEQUAL_OPERATOR_MEMBER_FUNCTION(WienerDeconvolutionFunctor)
Control indentation during Print() invocation.
Definition itkIndent.h:50
Implements transparent reference counting.
~WienerDeconvolutionImageFilter() override=default
void PrintSelf(std::ostream &os, Indent indent) const override
InverseDeconvolutionImageFilter< TInputImage, TKernelImage, TOutputImage, TInternalPrecision > Superclass
bool abs(bool x)
Definition itkMath.h:836
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....