33
33
namespace itk
34
34
{
35
35
36
- template <typename TInputImage, typename TOutputImage, typename TCoordType , typename InterpolatorType>
37
- InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType , InterpolatorType>::InterpolateImagePointsFilter()
36
+ template <typename TInputImage, typename TOutputImage, typename TCoordinate , typename InterpolatorType>
37
+ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordinate , InterpolatorType>::InterpolateImagePointsFilter()
38
38
{
39
39
m_Interpolator = InterpolatorType::New ();
40
40
m_DefaultPixelValue = 0 ;
@@ -44,9 +44,9 @@ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType, Interpolator
44
44
this ->ThreaderUpdateProgressOff ();
45
45
}
46
46
47
- template <typename TInputImage, typename TOutputImage, typename TCoordType , typename InterpolatorType>
47
+ template <typename TInputImage, typename TOutputImage, typename TCoordinate , typename InterpolatorType>
48
48
void
49
- InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType , InterpolatorType>::SetInputImage(
49
+ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordinate , InterpolatorType>::SetInputImage(
50
50
const TInputImage * inputImage)
51
51
{
52
52
this ->SetInput (0 , inputImage); // This is a data filter input
@@ -55,19 +55,19 @@ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType, Interpolator
55
55
m_Interpolator->SetInputImage (inputImage);
56
56
}
57
57
58
- template <typename TInputImage, typename TOutputImage, typename TCoordType , typename InterpolatorType>
58
+ template <typename TInputImage, typename TOutputImage, typename TCoordinate , typename InterpolatorType>
59
59
void
60
- InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType , InterpolatorType>::SetInterpolationCoordinate(
60
+ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordinate , InterpolatorType>::SetInterpolationCoordinate(
61
61
const CoordImageType * coordinate,
62
62
unsigned int setDimension)
63
63
{
64
64
// Set each coordinate as an input. Note that Input '0' is for the image.
65
65
this ->SetInput (setDimension + 1 , coordinate); // This is a data filter input
66
66
}
67
67
68
- template <typename TInputImage, typename TOutputImage, typename TCoordType , typename InterpolatorType>
68
+ template <typename TInputImage, typename TOutputImage, typename TCoordinate , typename InterpolatorType>
69
69
void
70
- InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType , InterpolatorType>::DynamicThreadedGenerateData(
70
+ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordinate , InterpolatorType>::DynamicThreadedGenerateData(
71
71
const OutputImageRegionType & outputRegionForThread)
72
72
{
73
73
OutputImagePointer outputPtr = this ->GetOutput ();
@@ -120,9 +120,9 @@ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType, Interpolator
120
120
}
121
121
}
122
122
123
- template <typename TInputImage, typename TOutputImage, typename TCoordType , typename InterpolatorType>
123
+ template <typename TInputImage, typename TOutputImage, typename TCoordinate , typename InterpolatorType>
124
124
void
125
- InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType , InterpolatorType>::GenerateInputRequestedRegion()
125
+ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordinate , InterpolatorType>::GenerateInputRequestedRegion()
126
126
{
127
127
// Call the superclass' implementation of this method
128
128
Superclass::GenerateInputRequestedRegion ();
@@ -139,9 +139,9 @@ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType, Interpolator
139
139
inputPtr->SetRequestedRegionToLargestPossibleRegion ();
140
140
}
141
141
142
- template <typename TInputImage, typename TOutputImage, typename TCoordType , typename InterpolatorType>
142
+ template <typename TInputImage, typename TOutputImage, typename TCoordinate , typename InterpolatorType>
143
143
void
144
- InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType , InterpolatorType>::GenerateOutputInformation()
144
+ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordinate , InterpolatorType>::GenerateOutputInformation()
145
145
{
146
146
// Call the superclass' implementation of this method
147
147
Superclass::GenerateOutputInformation ();
@@ -169,10 +169,10 @@ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType, Interpolator
169
169
outputPtr->SetLargestPossibleRegion (outputLargestPossibleRegion);
170
170
}
171
171
172
- template <typename TInputImage, typename TOutputImage, typename TCoordType , typename InterpolatorType>
172
+ template <typename TInputImage, typename TOutputImage, typename TCoordinate , typename InterpolatorType>
173
173
void
174
- InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordType , InterpolatorType>::PrintSelf(std::ostream & os,
175
- Indent indent) const
174
+ InterpolateImagePointsFilter<TInputImage, TOutputImage, TCoordinate , InterpolatorType>::PrintSelf(std::ostream & os,
175
+ Indent indent) const
176
176
{
177
177
Superclass::PrintSelf (os, indent);
178
178
0 commit comments