Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/itkBSplineGradientImageFilter.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ class ITK_TEMPLATE_EXPORT BSplineGradientImageFilter
#endif

/** Typedefs for the interpolator. */
using CoordRepType = TCoordRep;
using CoordinateType = TCoordRep;
using CoefficientType = TCoefficientType;
using InterpolatorType = itk::BSplineInterpolateImageFunction<InputImageType, CoordRepType, CoefficientType>;
using InterpolatorType = itk::BSplineInterpolateImageFunction<InputImageType, CoordinateType, CoefficientType>;
using InterpolatorPointerType = typename InterpolatorType::Pointer;

protected:
Expand Down
2 changes: 1 addition & 1 deletion include/itkBSplineGradientImageFilter.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ BSplineGradientImageFilter<TInputImage, TOutputValueType, TCoordRep, TCoefficien
index = it.GetIndex();
for (i = 0; i < ImageDimension; ++i)
{
contIndex[i] = static_cast<CoordRepType>(index[i]);
contIndex[i] = static_cast<CoordinateType>(index[i]);
}
it.Set(interpolator->EvaluateDerivativeAtContinuousIndex(contIndex));
}
Expand Down