Skip to content

Commit

Permalink
WIP: More details.
Browse files Browse the repository at this point in the history
  • Loading branch information
hjmjohnson committed Apr 10, 2024
1 parent e9b7f9d commit 101d62f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,8 @@ ResampleImageFilter<TInputImage, TOutputImage, TInterpolatorPrecisionType, TTran
for (unsigned int i = 0; i < InputImageDimension; ++i)
{
inputIndex[i] += alpha * vectorFromStartIndex[i];
std::cout << "XXXX " << i << " " << myconverter(inputIndex[i]) << " " << alpha << std::endl;
std::cout << "XXXX " << i << " " << myconverter(alpha) << " * " << myconverter(vectorFromStartIndex[i])
<< " => " << myconverter(inputIndex[i]) << std::endl;
}

// Evaluate input at right position and copy to the output
Expand Down

0 comments on commit 101d62f

Please sign in to comment.