#ifndef _clitkVectorBSplineDecompositionImageFilter_txx
#define _clitkVectorBSplineDecompositionImageFilter_txx
#include "clitkVectorBSplineDecompositionImageFilter.h"
+#include "clitkDD.h"
#include "itkImageRegionConstIteratorWithIndex.h"
#include "itkImageRegionIterator.h"
#include "itkProgressReporter.h"
//void SetOutputSpacing(const SpacingType & s);
//void SetInputImageIsCoefficient(bool inputIsCoef) { mInputIsCoef = inputIsCoef; }
+ /** Evaluate the function at a ContinuousIndex position.
+ Overwritten for taking LUT into account (RP: multi-threading-compatible version,
+ the threadID is actually ignored) */
+ virtual OutputType EvaluateAtContinuousIndex(const ContinuousIndexType & index, unsigned int /* threadID */ ) const
+ {
+ std::cout << "EvaluateAtContinuousIndex" << std::endl;
+ return this->EvaluateAtContinuousIndex( index );
+ }
+
/** Evaluate the function at a ContinuousIndex position.
Overwritten for taking LUT into account */
virtual OutputType EvaluateAtContinuousIndex(const ContinuousIndexType & index ) const;
VectorBSplineInterpolateImageFunctionWithLUT<TImageType,TCoordRep,TCoefficientType>::
EvaluateAtContinuousIndex(const ContinuousIndexType & x) const
{
-
// JV Compute BSpline weights if not up to date! Problem const: pass image as last
// if (!mWeightsAreUpToDate) UpdatePrecomputedWeights();
// For shorter coding