18#ifndef itkWindowedSincInterpolateImageFunction_h
19#define itkWindowedSincInterpolateImageFunction_h
38template <
unsigned int VRadius,
typename TInput =
double,
typename TOutput =
double>
47 static constexpr double factor =
Math::pi / (2 * VRadius);
48 return static_cast<TOutput
>(std::cos(A * factor));
59template <
unsigned int VRadius,
typename TInput =
double,
typename TOutput =
double>
68 static constexpr double factor =
Math::pi / VRadius;
69 return static_cast<TOutput
>(0.54 + 0.46 * std::cos(A * factor));
80template <
unsigned int VRadius,
typename TInput =
double,
typename TOutput =
double>
89 static constexpr double factor = 1.0 / (VRadius * VRadius);
90 return static_cast<TOutput
>(1.0 - A * factor * A);
103template <
unsigned int VRadius,
typename TInput =
double,
typename TOutput =
double>
112 return static_cast<TOutput
>(1.0);
116 static constexpr double factor =
Math::pi / VRadius;
117 const double z = factor * A;
118 return static_cast<TOutput
>(std::sin(z) / z);
129template <
unsigned int VRadius,
typename TInput =
double,
typename TOutput =
double>
138 static constexpr double factor1 =
Math::pi / VRadius;
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));
253template <
typename TInputImage,
254 unsigned int VRadius,
255 typename TWindowFunction = Function::HammingWindowFunction<VRadius>,
256 class TBoundaryCondition = ZeroFluxNeumannBoundaryCondition<TInputImage, TInputImage>,
257 class TCoordinate =
double>
317 constexpr auto radius = SizeType::Filled(VRadius);
352 return (x == 0.0) ? 1.0 : std::sin(px) / px;
357#ifndef ITK_MANUAL_INSTANTIATION
358# include "itkWindowedSincInterpolateImageFunction.hxx"
Const version of NeighborhoodIterator, defining iteration of a local N-dimensional neighborhood of pi...
Window function for sinc interpolation.
TOutput operator()(const TInput &A) const
Window function for sinc interpolation.
TOutput operator()(const TInput &A) const
Window function for sinc interpolation.
TOutput operator()(const TInput &A) const
Window function for sinc interpolation.
TOutput operator()(const TInput &A) const
Window function for sinc interpolation.
TOutput operator()(const TInput &A) const
Control indentation during Print() invocation.
typename NumericTraits< typename TInputImage::PixelType >::RealType RealType
InterpolateImageFunction()=default
typename InputImageType::IndexValueType IndexValueType
typename InputImageType::SizeType SizeType
typename InputImageType::IndexType IndexType
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
TInputImage InputImageType
static constexpr unsigned int ImageDimension
Implements transparent reference counting.
TWindowFunction m_WindowFunction
static constexpr unsigned int m_WindowSize
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
SizeType GetRadius() const override
InterpolateImageFunction< TInputImage, TCoordinate > Superclass
SmartPointer< Self > Pointer
static constexpr unsigned int ImageDimension
~WindowedSincInterpolateImageFunction() override=default
unsigned int m_WeightOffsetTable[m_OffsetTableSize][ImageDimension]
static constexpr unsigned int m_OffsetTableSize
void PrintSelf(std::ostream &os, Indent indent) const override
typename InputImageType::SizeType SizeType
SmartPointer< const Self > ConstPointer
WindowedSincInterpolateImageFunction()=default
OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &index) const override
unsigned int m_OffsetTable[m_OffsetTableSize]
ConstNeighborhoodIterator< ImageType, TBoundaryCondition > IteratorType
void SetInputImage(const ImageType *image) override
static double Sinc(const double x)
WindowedSincInterpolateImageFunction Self
constexpr TReturnType UnsignedPower(const uintmax_t base, const uintmax_t exponent) noexcept
static constexpr double pi
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....