ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkBSplineInterpolateImageFunction.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/*=========================================================================
19 *
20 * Portions of this file are subject to the VTK Toolkit Version 3 copyright.
21 *
22 * Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
23 *
24 * For complete copyright, license and disclaimer of warranty information
25 * please refer to the NOTICE file at the top of the ITK source tree.
26 *
27 *=========================================================================*/
28#ifndef itkBSplineInterpolateImageFunction_h
29#define itkBSplineInterpolateImageFunction_h
30
32#include "vnl/vnl_matrix.h"
33
35#include "itkConceptChecking.h"
36#include "itkCovariantVector.h"
37
38#include <memory> // For unique_ptr.
39#include <vector>
40
41namespace itk
42{
68template <typename TImageType, typename TCoordinate = double, typename TCoefficientType = double>
69class ITK_TEMPLATE_EXPORT BSplineInterpolateImageFunction : public InterpolateImageFunction<TImageType, TCoordinate>
70{
71public:
72 ITK_DISALLOW_COPY_AND_MOVE(BSplineInterpolateImageFunction);
73
79
81 itkOverrideGetNameOfClassMacro(BSplineInterpolateImageFunction);
82
84 itkNewMacro(Self);
85
87 using typename Superclass::OutputType;
88
90 using typename Superclass::InputImageType;
91
93 static constexpr unsigned int ImageDimension = Superclass::ImageDimension;
94
96 using typename Superclass::IndexType;
97
99 using typename Superclass::SizeType;
100
102 using typename Superclass::ContinuousIndexType;
103
105 using typename Superclass::PointType;
106
109
111 using CoefficientDataType = TCoefficientType;
113
117
120
130 Evaluate(const PointType & point) const override
131 {
132 const ContinuousIndexType index =
133 this->GetInputImage()->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
134 // No thread info passed in, so call method that doesn't need thread ID.
135 return (this->EvaluateAtContinuousIndex(index));
136 }
137
138 virtual OutputType
139 Evaluate(const PointType & point, ThreadIdType threadId) const
140 {
141 const ContinuousIndexType index =
142 this->GetInputImage()->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
143 return (this->EvaluateAtContinuousIndex(index, threadId));
144 }
145
146 OutputType
147 EvaluateAtContinuousIndex(const ContinuousIndexType & index) const override
148 {
149 // Don't know thread information, make evaluateIndex, weights on the stack.
150 // Slower, but safer.
151 vnl_matrix<long> evaluateIndex(ImageDimension, (m_SplineOrder + 1));
152 vnl_matrix<double> weights(ImageDimension, (m_SplineOrder + 1));
153
154 // Pass evaluateIndex, weights by reference. They're only good as long
155 // as this method is in scope.
156 return this->EvaluateAtContinuousIndexInternal(index, evaluateIndex, weights);
157 }
158
159 virtual OutputType
161 {
162 // Pass evaluateIndex, weights by reference. Different threadIDs get different instances.
164 }
165
166 CovariantVectorType
167 EvaluateDerivative(const PointType & point) const
168 {
169 const ContinuousIndexType index =
170 this->GetInputImage()->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
171
172 // No thread info passed in, so call method that doesn't need thread ID.
173 return (this->EvaluateDerivativeAtContinuousIndex(index));
174 }
175
176 CovariantVectorType
177 EvaluateDerivative(const PointType & point, ThreadIdType threadId) const
178 {
179 const ContinuousIndexType index =
180 this->GetInputImage()->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
181 return (this->EvaluateDerivativeAtContinuousIndex(index, threadId));
182 }
183
184 CovariantVectorType
186 {
187 // Don't know thread information, make evaluateIndex, weights,
188 // weightsDerivative
189 // on the stack.
190 // Slower, but safer.
191 vnl_matrix<long> evaluateIndex(ImageDimension, (m_SplineOrder + 1));
192 vnl_matrix<double> weights(ImageDimension, (m_SplineOrder + 1));
193 vnl_matrix<double> weightsDerivative(ImageDimension, (m_SplineOrder + 1));
194
195 // Pass evaluateIndex, weights, weightsDerivative by reference. They're only
196 // good
197 // as long as this method is in scope.
198 return this->EvaluateDerivativeAtContinuousIndexInternal(x, evaluateIndex, weights, weightsDerivative);
199 }
200
201 CovariantVectorType
207
208 void
210 {
211 const ContinuousIndexType index =
212 this->GetInputImage()->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
213
214 // No thread info passed in, so call method that doesn't need thread ID.
215 this->EvaluateValueAndDerivativeAtContinuousIndex(index, value, deriv);
216 }
217
218 void
220 OutputType & value,
221 CovariantVectorType & deriv,
222 ThreadIdType threadId) const
223 {
224 const ContinuousIndexType index =
225 this->GetInputImage()->template TransformPhysicalPointToContinuousIndex<TCoordinate>(point);
226 this->EvaluateValueAndDerivativeAtContinuousIndex(index, value, deriv, threadId);
227 }
228
229 void
231 OutputType & value,
232 CovariantVectorType & deriv) const
233 {
234 // Don't know thread information, make evaluateIndex, weights,
235 // weightsDerivative
236 // on the stack.
237 // Slower, but safer.
238 vnl_matrix<long> evaluateIndex(ImageDimension, (m_SplineOrder + 1));
239 vnl_matrix<double> weights(ImageDimension, (m_SplineOrder + 1));
240 vnl_matrix<double> weightsDerivative(ImageDimension, (m_SplineOrder + 1));
241
242 // Pass evaluateIndex, weights, weightsDerivative by reference. They're only
243 // good
244 // as long as this method is in scope.
246 x, value, deriv, evaluateIndex, weights, weightsDerivative);
247 }
248
249 void
251 OutputType & value,
252 CovariantVectorType & derivativeValue,
253 ThreadIdType threadId) const
254 {
256 value,
257 derivativeValue,
258 m_ThreadedEvaluateIndex[threadId],
259 m_ThreadedWeights[threadId],
261 }
262
265 void
266 SetSplineOrder(unsigned int SplineOrder);
267
268 itkGetConstMacro(SplineOrder, unsigned int);
269
270 void
272
273 itkGetConstMacro(NumberOfWorkUnits, ThreadIdType);
274
276 void
277 SetInputImage(const TImageType * inputData) override;
278
290 itkSetMacro(UseImageDirection, bool);
291 itkGetConstMacro(UseImageDirection, bool);
292 itkBooleanMacro(UseImageDirection);
294
296 GetRadius() const override
297 {
298 return SizeType::Filled(m_SplineOrder + 1);
299 }
300
301protected:
320 virtual OutputType
322 vnl_matrix<long> & evaluateIndex,
323 vnl_matrix<double> & weights) const;
324
325 virtual void
327 OutputType & value,
328 CovariantVectorType & derivativeValue,
329 vnl_matrix<long> & evaluateIndex,
330 vnl_matrix<double> & weights,
331 vnl_matrix<double> & weightsDerivative) const;
332
333 virtual CovariantVectorType
335 vnl_matrix<long> & evaluateIndex,
336 vnl_matrix<double> & weights,
337 vnl_matrix<double> & weightsDerivative) const;
338
341 void
342 PrintSelf(std::ostream & os, Indent indent) const override;
343
344 // These are needed by the smoothing spline routine.
345 // temp storage for processing of Coefficients
346 std::vector<CoefficientDataType> m_Scratch{};
347 // Image size
348 typename TImageType::SizeType m_DataLength{};
349 // User specified spline order (3rd or cubic is the default)
350 unsigned int m_SplineOrder{};
351
352 // Spline coefficients
354
355private:
357 void
359 const vnl_matrix<long> & EvaluateIndex,
360 vnl_matrix<double> & weights,
361 unsigned int splineOrder) const;
362
364 void
366 const vnl_matrix<long> & EvaluateIndex,
367 vnl_matrix<double> & weights,
368 unsigned int splineOrder) const;
369
372 void
374
376 void
377 DetermineRegionOfSupport(vnl_matrix<long> & evaluateIndex,
378 const ContinuousIndexType & x,
379 unsigned int splineOrder) const;
380
383 void
384 ApplyMirrorBoundaryConditions(vnl_matrix<long> & evaluateIndex, unsigned int splineOrder) const;
385
386 Iterator m_CIterator{}; // Iterator for
387 // traversing spline
388 // coefficients.
389 unsigned long m_MaxNumberInterpolationPoints{}; // number of
390 // neighborhood
391 // points used for
392 // interpolation
393 std::vector<IndexType> m_PointsToIndex{}; // Preallocation of
394 // interpolation
395 // neighborhood
396 // indices
397
399
400 // flag to take or not the image direction into account when computing the
401 // derivatives.
403
405 std::unique_ptr<vnl_matrix<long>[]> m_ThreadedEvaluateIndex;
406 std::unique_ptr<vnl_matrix<double>[]> m_ThreadedWeights;
407 std::unique_ptr<vnl_matrix<double>[]> m_ThreadedWeightsDerivative;
408};
409} // namespace itk
410
411#ifndef ITK_MANUAL_INSTANTIATION
412# include "itkBSplineInterpolateImageFunction.hxx"
413#endif
414
415#endif
Calculates the B-Spline coefficients of an image. Spline order may be from 0 to 5.
typename CoefficientFilter::Pointer CoefficientFilterPointer
virtual CovariantVectorType EvaluateDerivativeAtContinuousIndexInternal(const ContinuousIndexType &x, vnl_matrix< long > &evaluateIndex, vnl_matrix< double > &weights, vnl_matrix< double > &weightsDerivative) const
OutputType Evaluate(const PointType &point) const override
virtual OutputType EvaluateAtContinuousIndex(const ContinuousIndexType &x, ThreadIdType threadId) const
ImageLinearIteratorWithIndex< TImageType > Iterator
CovariantVector< OutputType, Self::ImageDimension > CovariantVectorType
void EvaluateValueAndDerivativeAtContinuousIndex(const ContinuousIndexType &x, OutputType &value, CovariantVectorType &derivativeValue, ThreadIdType threadId) const
virtual void EvaluateValueAndDerivativeAtContinuousIndexInternal(const ContinuousIndexType &x, OutputType &value, CovariantVectorType &derivativeValue, vnl_matrix< long > &evaluateIndex, vnl_matrix< double > &weights, vnl_matrix< double > &weightsDerivative) const
void PrintSelf(std::ostream &os, Indent indent) const override
void DetermineRegionOfSupport(vnl_matrix< long > &evaluateIndex, const ContinuousIndexType &x, unsigned int splineOrder) const
virtual OutputType EvaluateAtContinuousIndexInternal(const ContinuousIndexType &x, vnl_matrix< long > &evaluateIndex, vnl_matrix< double > &weights) const
void SetInputImage(const TImageType *inputData) override
void EvaluateValueAndDerivative(const PointType &point, OutputType &value, CovariantVectorType &deriv) const
void EvaluateValueAndDerivative(const PointType &point, OutputType &value, CovariantVectorType &deriv, ThreadIdType threadId) const
void SetSplineOrder(unsigned int SplineOrder)
~BSplineInterpolateImageFunction() override=default
CovariantVectorType EvaluateDerivative(const PointType &point) const
void SetDerivativeWeights(const ContinuousIndexType &x, const vnl_matrix< long > &EvaluateIndex, vnl_matrix< double > &weights, unsigned int splineOrder) const
BSplineDecompositionImageFilter< TImageType, CoefficientImageType > CoefficientFilter
void SetNumberOfWorkUnits(ThreadIdType numWorkUnits)
CovariantVectorType EvaluateDerivativeAtContinuousIndex(const ContinuousIndexType &x, ThreadIdType threadId) const
void ApplyMirrorBoundaryConditions(vnl_matrix< long > &evaluateIndex, unsigned int splineOrder) const
void EvaluateValueAndDerivativeAtContinuousIndex(const ContinuousIndexType &x, OutputType &value, CovariantVectorType &deriv) const
InterpolateImageFunction< TImageType, TCoordinate > Superclass
virtual OutputType Evaluate(const PointType &point, ThreadIdType threadId) const
CovariantVectorType EvaluateDerivative(const PointType &point, ThreadIdType threadId) const
Image< CoefficientDataType, Self::ImageDimension > CoefficientImageType
void SetInterpolationWeights(const ContinuousIndexType &x, const vnl_matrix< long > &EvaluateIndex, vnl_matrix< double > &weights, unsigned int splineOrder) const
A templated class holding a n-Dimensional covariant vector.
const InputImageType * GetInputImage() const
A multi-dimensional image iterator that visits image pixels within a region in a "scan-line" order.
Templated n-dimensional image class.
Definition itkImage.h:89
Control indentation during Print() invocation.
Definition itkIndent.h:50
Point< TCoordinate, Self::ImageDimension > PointType
ContinuousIndex< TCoordinate, Self::ImageDimension > ContinuousIndexType
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....
unsigned int ThreadIdType