ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkComplexBSplineInterpolateImageFunction.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 itkComplexBSplineInterpolateImageFunction_h
19#define itkComplexBSplineInterpolateImageFunction_h
20
24
25namespace itk
26{
43template <typename TImageType, typename TCoordinate = double, typename TCoefficientType = double>
45 : public InterpolateImageFunction<TImageType, TCoordinate>
46{
47public:
48 ITK_DISALLOW_COPY_AND_MOVE(ComplexBSplineInterpolateImageFunction);
49
58
60 itkOverrideGetNameOfClassMacro(ComplexBSplineInterpolateImageFunction);
61
63 itkNewMacro(Self);
64
66 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
67
69 using typename Superclass::OutputType;
70
72 using typename Superclass::InputImageType;
73
75 using typename Superclass::IndexType;
76
78 using typename Superclass::SizeType;
79
82
84 using typename Superclass::PointType;
85
88
92
95
105 EvaluateAtContinuousIndex(const ContinuousIndexType & index) const override;
106
108 /* using CovariantVectorType = CovariantVector< OutputType, Self::ImageDimension >;
109
110 CovariantVectorType EvaluateDerivative( const PointType & point ) const
111 {
112 ContinuousIndexType index;
113 this->GetInputImage()->TransformPhysicalPointToContinuousIndex( point, index );
114 return ( this->EvaluateDerivativeAtContinuousIndex( index ) );
115 }
116
117 CovariantVectorType EvaluateDerivativeAtContinuousIndex( const ContinuousIndexType & x ) const;
118 */
119
122 void
123 SetSplineOrder(unsigned int SplineOrder);
124
125 itkGetConstMacro(SplineOrder, unsigned int);
126
129 void
130 SetInputImage(const TImageType * inputData) override;
131
133 GetRadius() const override
134 {
135 return SizeType::Filled(m_SplineOrder + 1);
136 }
137
138protected:
141
142 void
143 PrintSelf(std::ostream & os, Indent indent) const override;
144
145private:
146 unsigned int m_SplineOrder{};
147
150
152
154}; // class
155} // namespace itk
156
157#ifndef ITK_MANUAL_INSTANTIATION
158# include "itkComplexBSplineInterpolateImageFunction.hxx"
159#endif
160
161#endif
Evaluates the B-Spline interpolation of an image. Spline order may be from 0 to 5.
~ComplexBSplineInterpolateImageFunction() override=default
ContinuousIndex< double, Self::ImageDimension > ContinuousIndexType
ComplexToRealImageFilter< InputImageType, InternalImageType > RealFilterType
void SetSplineOrder(unsigned int SplineOrder)
InterpolateImageFunction< TImageType, TCoordinate > Superclass
BSplineInterpolateImageFunction< InternalImageType, TCoordinate, TCoefficientType > InterpolatorType
ComplexToImaginaryImageFilter< InputImageType, InternalImageType > ImaginaryFilterType
void SetInputImage(const TImageType *inputData) override
void PrintSelf(std::ostream &os, Indent indent) const override
OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &index) const override
Computes pixel-wise the imaginary part of a complex image.
Computes pixel-wise the real(x) part of a complex image.
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename InputImageType::SizeType SizeType
typename InputImageType::IndexType IndexType
Point< TCoordinate, Self::ImageDimension > PointType
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
static constexpr unsigned int ImageDimension
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....