ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkInterpolateImageFunction.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 itkInterpolateImageFunction_h
19#define itkInterpolateImageFunction_h
20
21#include "itkImageFunction.h"
22
23namespace itk
24{
44template <typename TInputImage, typename TCoordinate = double>
45class ITK_TEMPLATE_EXPORT InterpolateImageFunction
46 : public ImageFunction<TInputImage, typename NumericTraits<typename TInputImage::PixelType>::RealType, TCoordinate>
47{
48public:
49 ITK_DISALLOW_COPY_AND_MOVE(InterpolateImageFunction);
50
53 using Superclass =
55
58
60 itkOverrideGetNameOfClassMacro(InterpolateImageFunction);
61
63 using typename Superclass::OutputType;
64
66 using typename Superclass::InputImageType;
67
69 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
72 using typename Superclass::PointType;
73
75 using typename Superclass::IndexType;
76 using typename Superclass::IndexValueType;
77
79 using SizeType = typename InputImageType::SizeType;
80
83
86
96 Evaluate(const PointType & point) const override
97 {
98 const ContinuousIndexType index =
99 this->GetInputImage()->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
100 return (this->EvaluateAtContinuousIndex(index));
101 }
102
113 OutputType
114 EvaluateAtContinuousIndex(const ContinuousIndexType & index) const override = 0;
115
125 EvaluateAtIndex(const IndexType & index) const override
126 {
127 return (static_cast<RealType>(this->GetInputImage()->GetPixel(index)));
128 }
129
135 virtual SizeType
136 GetRadius() const = 0;
137
138protected:
140 ~InterpolateImageFunction() override = default;
141 void
142 PrintSelf(std::ostream & os, Indent indent) const override
143 {
144 Superclass::PrintSelf(os, indent);
145 }
146};
147} // end namespace itk
148
149#endif
void PrintSelf(std::ostream &os, Indent indent) const override
static constexpr unsigned int ImageDimension
const InputImageType * GetInputImage() const
TInputImage InputImageType
Control indentation during Print() invocation.
Definition itkIndent.h:50
typename NumericTraits< typename TImageType::PixelType >::RealType RealType
ImageFunction< TImageType, typename NumericTraits< typename TImageType::PixelType >::RealType, TCoordinate > Superclass
void PrintSelf(std::ostream &os, Indent indent) const override
virtual SizeType GetRadius() const =0
OutputType Evaluate(const PointType &point) const override
typename InputImageType::IndexValueType IndexValueType
OutputType EvaluateAtIndex(const IndexType &index) const override
typename InputImageType::IndexType IndexType
Point< TCoordinate, Self::ImageDimension > PointType
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &index) const override=0
~InterpolateImageFunction() override=default
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....