ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkWindowedSincInterpolateImageFunction.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 itkWindowedSincInterpolateImageFunction_h
19#define itkWindowedSincInterpolateImageFunction_h
20
24#include "itkMath.h"
25
26namespace itk
27{
28// clang-format off
29namespace Function
30{
38template <unsigned int VRadius, typename TInput = double, typename TOutput = double>
39class ITK_TEMPLATE_EXPORT CosineWindowFunction
40{
41public:
42 inline TOutput
43 operator()(const TInput & A) const
44 {
45
47 static constexpr double factor = Math::pi / (2 * VRadius);
48 return static_cast<TOutput>(std::cos(A * factor));
49 }
50};
51
59template <unsigned int VRadius, typename TInput = double, typename TOutput = double>
60class ITK_TEMPLATE_EXPORT HammingWindowFunction
61{
62public:
63 inline TOutput
64 operator()(const TInput & A) const
65 {
66
68 static constexpr double factor = Math::pi / VRadius;
69 return static_cast<TOutput>(0.54 + 0.46 * std::cos(A * factor));
70 }
71};
72
80template <unsigned int VRadius, typename TInput = double, typename TOutput = double>
81class ITK_TEMPLATE_EXPORT WelchWindowFunction
82{
83public:
85 inline TOutput
86 operator()(const TInput & A) const
87 {
88
89 static constexpr double factor = 1.0 / (VRadius * VRadius);
90 return static_cast<TOutput>(1.0 - A * factor * A);
91 }
92};
93
103template <unsigned int VRadius, typename TInput = double, typename TOutput = double>
104class ITK_TEMPLATE_EXPORT LanczosWindowFunction
105{
106public:
107 inline TOutput
108 operator()(const TInput & A) const
109 {
110 if (A == 0.0)
111 {
112 return static_cast<TOutput>(1.0);
113 } // namespace Function
114
116 static constexpr double factor = Math::pi / VRadius;
117 const double z = factor * A;
118 return static_cast<TOutput>(std::sin(z) / z);
119 } // namespace itk
120};
121
129template <unsigned int VRadius, typename TInput = double, typename TOutput = double>
130class ITK_TEMPLATE_EXPORT BlackmanWindowFunction
131{
132public:
133 inline TOutput
134 operator()(const TInput & A) const
135 {
136
138 static constexpr double factor1 = Math::pi / VRadius;
139
141 static constexpr double factor2 = 2.0 * Math::pi / VRadius;
142 return static_cast<TOutput>(0.42 + 0.5 * std::cos(A * factor1) + 0.08 * std::cos(A * factor2));
143 }
144};
145} // namespace Function
146// clang-format on
147
253template <typename TInputImage,
254 unsigned int VRadius,
255 typename TWindowFunction = Function::HammingWindowFunction<VRadius>,
256 class TBoundaryCondition = ZeroFluxNeumannBoundaryCondition<TInputImage, TInputImage>,
257 class TCoordinate = double>
259 : public InterpolateImageFunction<TInputImage, TCoordinate>
260{
261public:
262 ITK_DISALLOW_COPY_AND_MOVE(WindowedSincInterpolateImageFunction);
263
267
270
272 itkOverrideGetNameOfClassMacro(WindowedSincInterpolateImageFunction);
273
275 itkNewMacro(Self);
276
278 using typename Superclass::OutputType;
279
281 using typename Superclass::InputImageType;
282
284 using typename Superclass::RealType;
285
287 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
288
290 using typename Superclass::IndexType;
291 using typename Superclass::IndexValueType;
292
294 using typename Superclass::SizeType;
295
297 using ImageType = TInputImage;
298
300 using typename Superclass::ContinuousIndexType;
301
302 void
303 SetInputImage(const ImageType * image) override;
304
312 EvaluateAtContinuousIndex(const ContinuousIndexType & index) const override;
313
315 GetRadius() const override
316 {
317 constexpr auto radius = SizeType::Filled(VRadius);
318 return radius;
319 }
320
321protected:
324 void
325 PrintSelf(std::ostream & os, Indent indent) const override;
326
327private:
328 // Internal type alias
330
331 // Constant to store twice the radius
332 static constexpr unsigned int m_WindowSize{ 2 * VRadius };
333
335 TWindowFunction m_WindowFunction{};
336
339
343
346
348 static double
349 Sinc(const double x)
350 {
351 const double px = Math::pi * x;
352 return (x == 0.0) ? 1.0 : std::sin(px) / px;
353 }
354};
355} // namespace itk
356
357#ifndef ITK_MANUAL_INSTANTIATION
358# include "itkWindowedSincInterpolateImageFunction.hxx"
359#endif
360
361#endif // _itkWindowedSincInterpolateImageFunction_h
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename NumericTraits< typename TInputImage::PixelType >::RealType RealType
typename InputImageType::IndexValueType IndexValueType
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
Implements transparent reference counting.
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
InterpolateImageFunction< TInputImage, TCoordinate > Superclass
~WindowedSincInterpolateImageFunction() override=default
unsigned int m_WeightOffsetTable[m_OffsetTableSize][ImageDimension]
void PrintSelf(std::ostream &os, Indent indent) const override
OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &index) const override
ConstNeighborhoodIterator< ImageType, TBoundaryCondition > IteratorType
void SetInputImage(const ImageType *image) override
constexpr TReturnType UnsignedPower(const uintmax_t base, const uintmax_t exponent) noexcept
Definition itkMath.h:790
static constexpr double pi
Definition itkMath.h:66
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....