1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include <iostream>
#include "itkImage.h"
#include "itkVectorImage.h"
#include "itkLinearInterpolateImageFunction.h"
/* VS 2015 has a bug when building release with the heavly nested for
* loops iterating too many times. This turns off optimization to
* allow the tests to pass.
*/
#if _MSC_VER == 1900
# pragma optimize( "", off )
#endif
/* Allows testing up to TDimension=4 */
template< unsigned int TDimension >
int RunTest( void )
{
typedef float PixelType;
const unsigned int Dimensions = TDimension;
const unsigned int VectorDimension = 4;
typedef itk::Vector< PixelType, VectorDimension > VectorPixelType;
typedef itk::Image< PixelType, Dimensions > ImageType;
typedef itk::Image< VectorPixelType, Dimensions > VectorImageType;
typedef itk::VectorImage< PixelType, Dimensions > VariableVectorImageType;
typedef typename VariableVectorImageType::PixelType VariablePixelType;
typedef typename ImageType::RegionType RegionType;
typedef typename RegionType::SizeType SizeType;
typedef typename ImageType::IndexType IndexType;
typedef float CoordRepType;
typedef typename itk::ContinuousIndex<CoordRepType, Dimensions>
ContinuousIndexType;
typedef typename ContinuousIndexType::ValueType AccumulatorType;
typedef typename itk::Point<CoordRepType,Dimensions> PointType;
typedef typename itk::LinearInterpolateImageFunction<
ImageType,
CoordRepType >
InterpolatorType;
typedef typename itk::LinearInterpolateImageFunction<
VectorImageType,
CoordRepType >
VectorInterpolatorType;
typedef typename itk::LinearInterpolateImageFunction<
VariableVectorImageType,
CoordRepType >
VariableVectorInterpolatorType;
typedef typename VectorInterpolatorType::OutputType InterpolatedVectorType;
typedef typename VariableVectorInterpolatorType::OutputType
InterpolatedVariableVectorType;
typename ImageType::Pointer image = ImageType::New();
typename VectorImageType::Pointer vectorimage = VectorImageType::New();
typename VariableVectorImageType::Pointer
variablevectorimage = VariableVectorImageType::New();
variablevectorimage->SetVectorLength(VectorDimension);
IndexType start;
start.Fill( 0 );
SizeType size;
const int dimMaxLength = 3;
size.Fill( dimMaxLength );
RegionType region;
region.SetSize( size );
region.SetIndex( start );
image->SetRegions( region );
image->Allocate();
vectorimage->SetRegions( region );
vectorimage->Allocate();
variablevectorimage->SetRegions( region );
variablevectorimage->Allocate();
typename ImageType::PointType origin;
typename ImageType::SpacingType spacing;
origin.Fill( 0.0 );
spacing.Fill( 1.0 );
image->SetOrigin( origin );
image->SetSpacing( spacing );
vectorimage->SetOrigin( origin );
vectorimage->SetSpacing( spacing );
variablevectorimage->SetOrigin( origin );
variablevectorimage->SetSpacing( spacing );
image->Print( std::cout );
// Setup for testing up to Dimension=4
unsigned int dimLengths[4] = {1,1,1,1};
for( unsigned int ind = 0; ind < Dimensions; ind++ )
{
dimLengths[ind] = dimMaxLength;
}
//
// Fill up the image values with the function
//
// Intensity = f(d1[,d2[,d3[,d4]]]) = 3*d1 [+ d2 [+ d3 [+ d4] ] ]
//
//
IndexType index;
unsigned int dimIt[4];
std::cout << "Image Data: " << std::endl;
for (dimIt[3] = 0; dimIt[3] < dimLengths[3]; dimIt[3]++)
{
for (dimIt[2] = 0; dimIt[2] < dimLengths[2]; dimIt[2]++)
{
std::cout << "* dimIt[3], dimIt[2]: " << dimIt[3] << ", " << dimIt[2]
<< std::endl;
for (dimIt[1] = 0; dimIt[1] < dimLengths[1]; dimIt[1]++)
{
for (dimIt[0] = 0; dimIt[0] < dimLengths[0]; dimIt[0]++)
{
PixelType value = 3*dimIt[0];
index[0] = dimIt[0];
for( unsigned int ind = 1; ind < Dimensions; ind++ )
{
value += dimIt[ind];
index[ind]=dimIt[ind];
}
image->SetPixel( index, value );
VectorPixelType & vectorpixel = vectorimage->GetPixel( index );
vectorpixel.Fill( value );
VariablePixelType
variablevectorpixel = variablevectorimage->GetPixel( index );
variablevectorpixel.Fill( value );
std::cout << value << " ";
}
std::cout << std::endl;
}
}
}
typename InterpolatorType::Pointer interpolator = InterpolatorType::New();
interpolator->SetInputImage( image );
typename VectorInterpolatorType::Pointer
vectorinterpolator = VectorInterpolatorType::New();
vectorinterpolator->SetInputImage( vectorimage );
typename VariableVectorInterpolatorType::Pointer
variablevectorinterpolator = VariableVectorInterpolatorType::New();
variablevectorinterpolator->SetInputImage( variablevectorimage );
const AccumulatorType incr = 0.2;
const AccumulatorType tolerance = 5e-6;
// The tolerance of the norm must be greater than the tolerance for individual items.
const AccumulatorType normTolerance = std::sqrt(4.0f*tolerance*tolerance);
PointType point;
AccumulatorType testLengths[4] = {1,1,1,1};
for( unsigned int ind = 0; ind < Dimensions; ind++ )
{
testLengths[ind] = dimMaxLength-1;
}
AccumulatorType steps[4];
AccumulatorType dimItf[4];
for (dimItf[3] = 0; dimItf[3] < testLengths[3]; dimItf[3]++)
{
for (dimItf[2] = 0; dimItf[2] < testLengths[2]; dimItf[2]++)
{
for (dimItf[1] = 0; dimItf[1] < testLengths[1]; dimItf[1]++)
{
for (dimItf[0] = 0; dimItf[0] < testLengths[0]; dimItf[0]++)
{
for (steps[3] = 0; steps[3] < dimItf[3] + 1.01; steps[3]+=incr)
{
for (steps[2] = 0; steps[2] < dimItf[2] + 1.01; steps[2]+=incr)
{
for (steps[1] = 0; steps[1] < dimItf[1] + 1.01; steps[1]+=incr)
{
for (steps[0] = 0; steps[0] < dimItf[0] + 1.01; steps[0]+=incr)
{
AccumulatorType expectedValue = 3*steps[0];
point[0] = steps[0];
for( unsigned int ind = 1; ind < Dimensions; ind++ )
{
expectedValue += steps[ind];
point[ind]=steps[ind];
}
if( interpolator->IsInsideBuffer( point ) )
{
const AccumulatorType computedValue = interpolator->Evaluate( point );
const AccumulatorType difference = expectedValue - computedValue;
if( std::fabs( difference ) > tolerance )
{
std::cerr << "Error found while computing interpolation "
<< std::endl;
std::cerr << "Point = " << point << std::endl;
std::cerr << "Expected value = " << expectedValue
<< std::endl;
std::cerr << "Computed value = " << computedValue
<< std::endl;
std::cerr << "Difference = " << difference
<< std::endl;
return EXIT_FAILURE;
}
const InterpolatedVectorType & vectorpixel =
vectorinterpolator->Evaluate( point );
const InterpolatedVectorType expectedvector(expectedValue);
const AccumulatorType & errornorm =
(expectedvector - vectorpixel).GetNorm();
if( errornorm > normTolerance )
{
std::cerr << "Error found computing vector interpolation "
<< std::endl;
std::cerr << "Point = " << point << std::endl;
std::cerr << "Expected vector = " << expectedvector
<< std::endl;
std::cerr << "Computed vector = " << vectorpixel
<< std::endl;
std::cerr << "Difference = "
<< (expectedvector - vectorpixel)
<< " --> "
<< errornorm << " > " << normTolerance
<< std::endl;
return EXIT_FAILURE;
}
const InterpolatedVariableVectorType variablevectorpixel =
variablevectorinterpolator->Evaluate( point );
InterpolatedVariableVectorType expectedvariablevector;
expectedvariablevector.SetSize(VectorDimension);
expectedvariablevector.Fill(expectedValue);
const AccumulatorType varerrornorm =
(expectedvariablevector - variablevectorpixel).GetNorm();
if( varerrornorm > normTolerance )
{
std::cerr << "Error found while computing variable "
<< " vector interpolation " << std::endl;
std::cerr << "Point = " << point << std::endl;
std::cerr << "Expected variablevector = "
<< expectedvariablevector << std::endl;
std::cerr << "Computed variablevector = "
<< variablevectorpixel << std::endl;
std::cerr << "Difference = "
<< (expectedvariablevector - variablevectorpixel)
<< " --> "
<< varerrornorm << " > " << normTolerance
<< std::endl;
return EXIT_FAILURE;
}
}
}
}
}
}
}
}
}
} //for dims[3]...
return EXIT_SUCCESS;
}// RunTest()
int itkLinearInterpolateImageFunctionTest( int , char*[] )
{
/* Test separately for images of 1 through 4 dimensions because this function
* has optimized implementations for dimensionality of 1-3, and unoptimized
* implementation for 4 and greater. */
int result = EXIT_SUCCESS;
std::cout << "***** Testing dimensionality of 1 *****" << std::endl;
if( RunTest<1>() == EXIT_FAILURE )
{
result = EXIT_FAILURE;
std::cout << "Failed for dimensionality 1." << std::endl;
}
std::cout << "***** Testing dimensionality of 2 *****" << std::endl;
if( RunTest<2>() == EXIT_FAILURE )
{
result = EXIT_FAILURE;
std::cout << "Failed for dimensionality 2." << std::endl;
}
std::cout << "***** Testing dimensionality of 3 *****" << std::endl;
if( RunTest<3>() == EXIT_FAILURE )
{
result = EXIT_FAILURE;
std::cout << "Failed for dimensionality 3." << std::endl;
}
std::cout << "***** Testing dimensionality of 4 *****" << std::endl;
if( RunTest<4>() == EXIT_FAILURE )
{
result = EXIT_FAILURE;
std::cout << "Failed for dimensionality 4." << std::endl;
}
return result;
}
|