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 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkSplineKernelTransformTest.cxx,v $
Language: C++
Date: $Date: 2006-08-28 21:41:01 $
Version: $Revision: 1.24 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
/**
* This tests the elastic body spline and thin plate spline
* transform classes by warping a unit cube into a cube with side length 3.
* It performs the test for 2D, 3D, and 4D to ensure that the
* class works in N dimensions
*/
#include "itkElasticBodySplineKernelTransform.h"
#include "itkElasticBodyReciprocalSplineKernelTransform.h"
#include "itkThinPlateSplineKernelTransform.h"
#include "itkThinPlateR2LogRSplineKernelTransform.h"
#include "itkVolumeSplineKernelTransform.h"
int itkSplineKernelTransformTest(int , char* [] )
{
const double epsilon = 1e-12;
// 2-D case
int i, j;
typedef itk::ElasticBodySplineKernelTransform<double, 2> EBSTransform2DType;
typedef itk::ElasticBodyReciprocalSplineKernelTransform<double, 2> EBRSTransform2DType;
typedef itk::ThinPlateSplineKernelTransform<double, 2> TPSTransform2DType;
typedef itk::ThinPlateR2LogRSplineKernelTransform<double, 2> TPR2LRSTransform2DType;
typedef itk::VolumeSplineKernelTransform<double, 2> VSTransform2DType;
typedef EBSTransform2DType::InputPointType PointType2D;
typedef EBSTransform2DType::PointsIterator Points2DIteratorType;
typedef EBSTransform2DType::PointSetType PointSetType2D;
PointType2D sourcePoint2D;
PointType2D targetPoint2D;
PointType2D mappedPoint2D;
EBSTransform2DType::Pointer ebs2D = EBSTransform2DType::New();
EBRSTransform2DType::Pointer ebrs2D = EBRSTransform2DType::New();
TPSTransform2DType::Pointer tps2D = TPSTransform2DType::New();
TPR2LRSTransform2DType::Pointer tpr2lrs2D = TPR2LRSTransform2DType::New();
VSTransform2DType::Pointer vs2D = VSTransform2DType::New();
// Reserve memory for the number of points
PointSetType2D::Pointer sourceLandmarks2D = PointSetType2D::New();
PointSetType2D::Pointer targetLandmarks2D = PointSetType2D::New();
sourceLandmarks2D->GetPoints()->Reserve( 4 );
targetLandmarks2D->GetPoints()->Reserve( 4 );
// Create landmark sets
Points2DIteratorType source2Dit = sourceLandmarks2D->GetPoints()->Begin();
Points2DIteratorType target2Dit = targetLandmarks2D->GetPoints()->Begin();
Points2DIteratorType source2Dend = sourceLandmarks2D->GetPoints()->End();
for (i = 0; i < 2; i++)
{
for (j = 0; j < 2; j++)
{
sourcePoint2D[0] = j;
sourcePoint2D[1] = i;
source2Dit.Value() = sourcePoint2D;
targetPoint2D[0] = 3*j;
targetPoint2D[1] = 3*i;
target2Dit.Value() = targetPoint2D;
source2Dit++;
target2Dit++;
}
}
std::cout << "EBS 2D Test:" << std::endl;
// Poisson's ration = 0.25, Alpha = 12.0 * ( 1 - \nu ) - 1
ebs2D->SetSourceLandmarks( sourceLandmarks2D );
ebs2D->SetTargetLandmarks( targetLandmarks2D );
ebs2D->SetAlpha( 12.0 * ( 1 - 0.25) - 1.0 );
ebs2D->ComputeWMatrix();
{ // Testing the number of parameters
EBSTransform2DType::ParametersType parameters1 = ebs2D->GetParameters();
const unsigned int numberOfParameters = parameters1.Size();
if( numberOfParameters != 4 * 2 )
{
std::cerr << "Number of parameters was not updated after" << std::endl;
std::cerr << "invoking SetSourceLandmarks and SetTargetLandmarks" << std::endl;
std::cerr << "Number of parameters is = " << numberOfParameters << std::endl;
std::cerr << "While we were expecting = " << 4 * 2 << std::endl;
return EXIT_FAILURE;
}
}
source2Dit = sourceLandmarks2D->GetPoints()->Begin();
target2Dit = targetLandmarks2D->GetPoints()->Begin();
source2Dend = sourceLandmarks2D->GetPoints()->End();
while( source2Dit != source2Dend )
{
sourcePoint2D = source2Dit.Value();
targetPoint2D = target2Dit.Value();
mappedPoint2D = ebs2D->TransformPoint(sourcePoint2D);
std::cout << sourcePoint2D << " : " << targetPoint2D;
std::cout << " warps to: " << mappedPoint2D << std::endl;
if( mappedPoint2D.EuclideanDistanceTo( targetPoint2D ) > epsilon )
{
return EXIT_FAILURE;
}
source2Dit++;
target2Dit++;
}
std::cout << std::endl;
std::cout << "EBRS 2D Test:" << std::endl;
ebrs2D->SetSourceLandmarks( sourceLandmarks2D );
ebrs2D->SetTargetLandmarks( targetLandmarks2D );
ebrs2D->SetAlpha( 12.0 * ( 1 - 0.25) - 1.0 );
ebrs2D->ComputeWMatrix();
source2Dit = sourceLandmarks2D->GetPoints()->Begin();
target2Dit = targetLandmarks2D->GetPoints()->Begin();
source2Dend = sourceLandmarks2D->GetPoints()->End();
while( source2Dit != source2Dend )
{
sourcePoint2D = source2Dit.Value();
targetPoint2D = target2Dit.Value();
mappedPoint2D = ebrs2D->TransformPoint(sourcePoint2D);
std::cout << sourcePoint2D << " : " << targetPoint2D;
std::cout << " warps to: " << mappedPoint2D << std::endl;
if( mappedPoint2D.EuclideanDistanceTo( targetPoint2D ) > epsilon )
{
return EXIT_FAILURE;
}
source2Dit++;
target2Dit++;
}
std::cout << std::endl;
std::cout << "TPS 2D Test:" << std::endl;
tps2D->SetSourceLandmarks( sourceLandmarks2D );
tps2D->SetTargetLandmarks( targetLandmarks2D );
tps2D->ComputeWMatrix();
source2Dit = sourceLandmarks2D->GetPoints()->Begin();
target2Dit = targetLandmarks2D->GetPoints()->Begin();
source2Dend = sourceLandmarks2D->GetPoints()->End();
while( source2Dit != source2Dend )
{
sourcePoint2D = source2Dit.Value();
targetPoint2D = target2Dit.Value();
mappedPoint2D = tps2D->TransformPoint(sourcePoint2D);
std::cout << sourcePoint2D << " : " << targetPoint2D;
std::cout << " warps to: " << mappedPoint2D << std::endl;
if( mappedPoint2D.EuclideanDistanceTo( targetPoint2D ) > epsilon )
{
return EXIT_FAILURE;
}
source2Dit++;
target2Dit++;
}
std::cout << std::endl;
// 3-D case
int k;
typedef itk::ElasticBodySplineKernelTransform<double, 3> EBSTransform3DType;
typedef itk::ThinPlateSplineKernelTransform<double, 3> TPSTransform3DType;
typedef EBSTransform3DType::InputPointType PointType3D;
typedef EBSTransform3DType::PointsIterator Points3DIteratorType;
PointType3D sourcePoint3D;
PointType3D targetPoint3D;
PointType3D mappedPoint3D;
EBSTransform3DType::Pointer ebs3D = EBSTransform3DType::New();
TPSTransform3DType::Pointer tps3D = TPSTransform3DType::New();
// Reserve memory for the number of points
ebs3D->GetTargetLandmarks()->GetPoints()->Reserve( 8 );
tps3D->GetTargetLandmarks()->GetPoints()->Reserve( 8 );
ebs3D->GetSourceLandmarks()->GetPoints()->Reserve( 8 );
tps3D->GetSourceLandmarks()->GetPoints()->Reserve( 8 );
// Create landmark sets
Points3DIteratorType ebs3Ds = ebs3D->GetSourceLandmarks()->GetPoints()->Begin();
Points3DIteratorType ebs3Dt = ebs3D->GetTargetLandmarks()->GetPoints()->Begin();
Points3DIteratorType tps3Ds = tps3D->GetSourceLandmarks()->GetPoints()->Begin();
Points3DIteratorType tps3Dt = tps3D->GetTargetLandmarks()->GetPoints()->Begin();
Points3DIteratorType ebs3DsEnd = ebs3D->GetSourceLandmarks()->GetPoints()->End();
Points3DIteratorType tps3DsEnd = tps3D->GetSourceLandmarks()->GetPoints()->End();
for (i = 0; i < 2; i++)
{
for (j = 0; j < 2; j++)
{
for (k = 0; k < 2; k++)
{
sourcePoint3D[0] = k;
sourcePoint3D[1] = j;
sourcePoint3D[2] = i;
ebs3Ds.Value() = sourcePoint3D;
tps3Ds.Value() = sourcePoint3D;
targetPoint3D[0] = 3*k;
targetPoint3D[1] = 3*j;
targetPoint3D[2] = 3*i;
ebs3Dt.Value() = targetPoint3D;
tps3Dt.Value() = targetPoint3D;
ebs3Ds++;
ebs3Dt++;
tps3Ds++;
tps3Dt++;
}
}
}
std::cout << "EBS 3D Test:" << std::endl;
// Poisson's ration = 0.25, Alpha = 12.0 * ( 1 - \nu ) - 1
ebs3D->SetAlpha( 12.0 * ( 1 - 0.25) - 1.0 );
ebs3D->ComputeWMatrix();
ebs3Ds = ebs3D->GetSourceLandmarks()->GetPoints()->Begin();
ebs3Dt = ebs3D->GetTargetLandmarks()->GetPoints()->Begin();
ebs3DsEnd = ebs3D->GetSourceLandmarks()->GetPoints()->End();
while( ebs3Ds != ebs3DsEnd )
{
sourcePoint3D = ebs3Ds.Value();
targetPoint3D = ebs3Dt.Value();
mappedPoint3D = ebs3D->TransformPoint(sourcePoint3D);
std::cout << sourcePoint3D << " : " << targetPoint3D;
std::cout << " warps to: " << mappedPoint3D << std::endl;
if( mappedPoint3D.EuclideanDistanceTo( targetPoint3D ) > epsilon )
{
return EXIT_FAILURE;
}
ebs3Ds++;
ebs3Dt++;
}
std::cout << std::endl;
std::cout << "TPS 3D Test:" << std::endl;
tps3D->ComputeWMatrix();
tps3Ds = tps3D->GetSourceLandmarks()->GetPoints()->Begin();
tps3Dt = tps3D->GetTargetLandmarks()->GetPoints()->Begin();
tps3DsEnd = tps3D->GetSourceLandmarks()->GetPoints()->End();
while( tps3Ds != tps3DsEnd )
{
sourcePoint3D = tps3Ds.Value();
targetPoint3D = tps3Dt.Value();
mappedPoint3D = tps3D->TransformPoint(sourcePoint3D);
std::cout << sourcePoint3D << " : " << targetPoint3D;
std::cout << " warps to: " << mappedPoint3D << std::endl;
if( mappedPoint3D.EuclideanDistanceTo( targetPoint3D ) > epsilon )
{
return EXIT_FAILURE;
}
tps3Ds++;
tps3Dt++;
}
std::cout << std::endl;
std::cout << "Get/Set Parameters test " << std::endl;
TPSTransform3DType::ParametersType parameters1 = tps3D->GetParameters();
tps3D->SetParameters( parameters1 );
TPSTransform3DType::ParametersType parameters2 = tps3D->GetParameters();
const unsigned int numberOfParameters = parameters1.Size();
const double tolerance = 1e-7;
for(unsigned int pr = 0; pr < numberOfParameters; pr++)
{
if( vnl_math_abs( parameters1[pr] - parameters2[pr] ) > tolerance )
{
std::cout << "Parameters were not correctly recovered " << std::endl;
return EXIT_FAILURE;
}
}
std::cout << "Get/Set Parameters Passed" << std::endl << std::endl;
// 4-D case
int l;
typedef itk::ElasticBodySplineKernelTransform<double, 4> EBSTransform4DType;
typedef itk::ThinPlateSplineKernelTransform<double, 4> TPSTransform4DType;
typedef EBSTransform4DType::InputPointType PointType4D;
typedef EBSTransform4DType::PointsIterator Points4DIteratorType;
PointType4D sourcePoint4D;
PointType4D targetPoint4D;
PointType4D mappedPoint4D;
EBSTransform4DType::Pointer ebs4D = EBSTransform4DType::New();
TPSTransform4DType::Pointer tps4D = TPSTransform4DType::New();
// Reserve memory for the number of points
ebs4D->GetTargetLandmarks()->GetPoints()->Reserve( 16 );
tps4D->GetTargetLandmarks()->GetPoints()->Reserve( 16 );
ebs4D->GetSourceLandmarks()->GetPoints()->Reserve( 16 );
tps4D->GetSourceLandmarks()->GetPoints()->Reserve( 16 );
// Create landmark sets
Points4DIteratorType ebs4Ds = ebs4D->GetSourceLandmarks()->GetPoints()->Begin();
Points4DIteratorType ebs4Dt = ebs4D->GetTargetLandmarks()->GetPoints()->Begin();
Points4DIteratorType tps4Ds = tps4D->GetSourceLandmarks()->GetPoints()->Begin();
Points4DIteratorType tps4Dt = tps4D->GetTargetLandmarks()->GetPoints()->Begin();
Points4DIteratorType ebs4DsEnd = ebs4D->GetSourceLandmarks()->GetPoints()->End();
Points4DIteratorType tps4DsEnd = tps4D->GetSourceLandmarks()->GetPoints()->End();
for (i = 0; i < 2; i++)
{
for (j = 0; j < 2; j++)
{
for (k = 0; k < 2; k++)
{
for (l = 0; l < 2; l++)
{
sourcePoint4D[0] = l;
sourcePoint4D[1] = k;
sourcePoint4D[2] = j;
sourcePoint4D[3] = i;
ebs4Ds.Value() = sourcePoint4D;
tps4Ds.Value() = sourcePoint4D;
targetPoint4D[0] = 3*l;
targetPoint4D[1] = 3*k;
targetPoint4D[2] = 3*j;
targetPoint4D[3] = 3*i;
ebs4Dt.Value() = targetPoint4D;
tps4Dt.Value() = targetPoint4D;
ebs4Ds++;
ebs4Dt++;
tps4Ds++;
tps4Dt++;
}
}
}
}
std::cout << "EBS 4D Test:" << std::endl;
// Poisson's ration = 0.25, Alpha = 12.0 * ( 1 - \nu ) - 1
ebs4D->SetAlpha( 12.0 * ( 1 - 0.25) - 1.0 );
ebs4D->ComputeWMatrix();
ebs4Ds = ebs4D->GetSourceLandmarks()->GetPoints()->Begin();
ebs4Dt = ebs4D->GetTargetLandmarks()->GetPoints()->Begin();
ebs4DsEnd = ebs4D->GetSourceLandmarks()->GetPoints()->End();
while( ebs4Ds != ebs4DsEnd )
{
sourcePoint4D = ebs4Ds.Value();
targetPoint4D = ebs4Dt.Value();
mappedPoint4D = ebs4D->TransformPoint(sourcePoint4D);
std::cout << sourcePoint4D << " : " << targetPoint4D;
std::cout << " warps to: " << mappedPoint4D << std::endl;
if( mappedPoint4D.EuclideanDistanceTo( targetPoint4D ) > epsilon )
{
return EXIT_FAILURE;
}
ebs4Ds++;
ebs4Dt++;
}
std::cout << std::endl;
std::cout << "TPS 4D Test:" << std::endl;
tps4D->ComputeWMatrix();
tps4Ds = tps4D->GetSourceLandmarks()->GetPoints()->Begin();
tps4Dt = tps4D->GetTargetLandmarks()->GetPoints()->Begin();
tps4DsEnd = tps4D->GetSourceLandmarks()->GetPoints()->End();
while( tps4Ds != tps4DsEnd )
{
sourcePoint4D = tps4Ds.Value();
targetPoint4D = tps4Dt.Value();
mappedPoint4D = tps4D->TransformPoint(sourcePoint4D);
std::cout << sourcePoint4D << " : " << targetPoint4D;
std::cout << " warps to: " << mappedPoint4D << std::endl;
if( mappedPoint4D.EuclideanDistanceTo( targetPoint4D ) > epsilon )
{
return EXIT_FAILURE;
}
tps4Ds++;
tps4Dt++;
}
std::cout << std::endl;
std::cout << ebs2D << std::endl;
std::cout << "TEST DONE" << std::endl;
return EXIT_SUCCESS;
}
|