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
|
/*=========================================================================
*
* 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 "itkVersorRigid3DTransform.h"
#include "itkCenteredTransformInitializer.h"
#include "itkImageRegionIterator.h"
namespace
{
const unsigned int Dimension = 3;
// This function assumes that the center of mass of both images is the
// geometrical center.
template< typename TFixedImage, typename TMovingImage >
bool RunTest(
itk::SmartPointer< TFixedImage > fixedImage,
itk::SmartPointer< TMovingImage > movingImage
)
{
typedef TFixedImage FixedImageType;
typedef TMovingImage MovingImageType;
bool pass = true;
// Transform Type
typedef itk::VersorRigid3DTransform< double > TransformType;
// calculate image centers
TransformType::InputPointType fixedCenter;
TransformType::InputPointType movingCenter;
typedef itk::ContinuousIndex< double, Dimension > ContinuousIndexType;
const typename FixedImageType::RegionType & fixedRegion = fixedImage->GetLargestPossibleRegion();
const typename FixedImageType::SizeType & fixedSize = fixedRegion.GetSize();
const typename FixedImageType::IndexType & fixedIndex = fixedRegion.GetIndex();
ContinuousIndexType fixedCenterIndex;
for ( unsigned int i=0; i<Dimension; i++ )
{
assert( 0 < fixedSize[i] );
fixedCenterIndex[i] = static_cast< double >( fixedIndex[i] ) +
static_cast< double >( fixedSize[i] - 1 ) / 2.0;
}
fixedImage->TransformContinuousIndexToPhysicalPoint( fixedCenterIndex, fixedCenter );
const typename MovingImageType::RegionType & movingRegion = movingImage->GetLargestPossibleRegion();
const typename MovingImageType::SizeType & movingSize = movingRegion.GetSize();
const typename MovingImageType::IndexType & movingIndex = movingRegion.GetIndex();
ContinuousIndexType movingCenterIndex;
for ( unsigned int i=0; i<Dimension; i++ )
{
assert( 0 < movingSize[i] );
movingCenterIndex[i] = static_cast< double >( movingIndex[i] ) +
static_cast< double >( movingSize[i] - 1 ) / 2.0;
}
movingImage->TransformContinuousIndexToPhysicalPoint( movingCenterIndex, movingCenter );
TransformType::InputVectorType relativeCenter = movingCenter - fixedCenter;
TransformType::Pointer transform = TransformType::New();
typedef itk::CenteredTransformInitializer<
TransformType,
FixedImageType,
MovingImageType >
InitializerType;
typename InitializerType::Pointer initializer = InitializerType::New();
initializer->SetFixedImage( fixedImage );
initializer->SetMovingImage( movingImage );
initializer->SetTransform( transform );
transform->SetIdentity();
initializer->GeometryOn();
initializer->InitializeTransform();
std::cout << std::endl << std::endl;
std::cout << "Testing Geometric Mode " << std::endl;
//transform->Print( std::cout );
const TransformType::InputPointType & center1 = transform->GetCenter();
const TransformType::OutputVectorType & translation1 = transform->GetTranslation();
const TransformType::OffsetType & offset1 = transform->GetOffset();
const double tolerance = 1e-3;
// Verfications for the Geometry Mode
for(unsigned int k=0; k < Dimension; k++ )
{
if( std::fabs( center1[k] - fixedCenter[k] ) > tolerance )
{
std::cerr << "Center differs from expected value" << std::endl;
std::cerr << "It should be " << fixedCenter << std::endl;
std::cerr << "but it is " << center1 << std::endl;
pass = false;
break;
}
if( std::fabs( translation1[k] - relativeCenter[k] ) > tolerance )
{
std::cerr << "Translation differs from expected value" << std::endl;
std::cerr << "It should be " << relativeCenter << std::endl;
std::cerr << "but it is " << translation1 << std::endl;
pass = false;
break;
}
if( std::fabs( offset1[k] - relativeCenter[k] ) > tolerance )
{
std::cerr << "Offset differs from expected value" << std::endl;
std::cerr << "It should be " << relativeCenter << std::endl;
std::cerr << "but it is " << offset1 << std::endl;
pass = false;
break;
}
}
transform->SetIdentity();
initializer->MomentsOn();
initializer->InitializeTransform();
std::cout << std::endl << std::endl;
std::cout << "Testing Moments Mode " << std::endl;
//transform->Print( std::cout );
const TransformType::InputPointType & center2 = transform->GetCenter();
const TransformType::OutputVectorType & translation2 = transform->GetTranslation();
const TransformType::OffsetType & offset2 = transform->GetOffset();
// Verfications for the Moments Mode
for(unsigned int k=0; k < Dimension; k++ )
{
if( std::fabs( center2[k] - fixedCenter[k] ) > tolerance )
{
std::cerr << "Center differs from expected value" << std::endl;
std::cerr << "It should be " << fixedCenter << std::endl;
std::cerr << "but it is " << center2 << std::endl;
pass = false;
break;
}
if( std::fabs( translation2[k] - relativeCenter[k] ) > tolerance )
{
std::cerr << "Translation differs from expected value" << std::endl;
std::cerr << "It should be " << relativeCenter << std::endl;
std::cerr << "but it is " << translation2 << std::endl;
pass = false;
break;
}
if( std::fabs( offset2[k] - relativeCenter[k] ) > tolerance )
{
std::cerr << "Offset differs from expected value" << std::endl;
std::cerr << "It should be " << relativeCenter << std::endl;
std::cerr << "but it is " << offset2 << std::endl;
pass = false;
break;
}
}
return pass;
}
template< typename TImage >
void PopulateImage( itk::SmartPointer< TImage > image )
{
image->Allocate();
image->FillBuffer( 0 );
typedef TImage ImageType;
typedef typename ImageType::RegionType RegionType;
typedef typename ImageType::SizeType SizeType;
typedef typename ImageType::IndexType IndexType;
const RegionType & region = image->GetLargestPossibleRegion();
const SizeType & size = region.GetSize();
const IndexType & index = region.GetIndex();
RegionType internalRegion;
SizeType internalSize;
IndexType internalIndex;
const unsigned int border = 20;
assert( 2 * border < size[0] );
assert( 2 * border < size[1] );
assert( 2 * border < size[2] );
internalIndex[0] = index[0] + border;
internalIndex[1] = index[1] + border;
internalIndex[2] = index[2] + border;
internalSize[0] = size[0] - 2 * border;
internalSize[1] = size[1] - 2 * border;
internalSize[2] = size[2] - 2 * border;
internalRegion.SetSize( internalSize );
internalRegion.SetIndex( internalIndex );
typedef itk::ImageRegionIterator< ImageType > Iterator;
Iterator it( image, internalRegion );
it.GoToBegin();
while( !it.IsAtEnd() )
{
it.Set( 200 );
++it;
}
}
} // namespace
/**
* This program tests the use of the CenteredTransformInitializer class
*
*
*/
int itkCenteredTransformInitializerTest(int , char* [] )
{
bool pass = true;
std::cout << std::endl << std::endl;
std::cout << "Running tests with itk::Image" << std::endl;
{
// Create Images
typedef itk::Image<unsigned char, Dimension> FixedImageType;
typedef itk::Image<unsigned char, Dimension> MovingImageType;
typedef FixedImageType::SizeType SizeType;
typedef FixedImageType::SpacingType SpacingType;
typedef FixedImageType::PointType PointType;
typedef FixedImageType::IndexType IndexType;
typedef FixedImageType::RegionType RegionType;
SizeType size;
size[0] = 100;
size[1] = 100;
size[2] = 60;
PointType fixedOrigin;
fixedOrigin[0] = 0.0;
fixedOrigin[1] = 0.0;
fixedOrigin[2] = 0.0;
PointType movingOrigin;
movingOrigin[0] = 29.0;
movingOrigin[1] = 17.0;
movingOrigin[2] = 13.0;
SpacingType spacing;
spacing[0] = 1.5;
spacing[1] = 1.5;
spacing[2] = 2.5;
IndexType index;
index[0] = 0;
index[1] = 0;
index[2] = 0;
RegionType region;
region.SetSize( size );
region.SetIndex( index );
FixedImageType::Pointer fixedImage = FixedImageType::New();
MovingImageType::Pointer movingImage = MovingImageType::New();
fixedImage->SetRegions( region );
fixedImage->SetSpacing( spacing );
fixedImage->SetOrigin( fixedOrigin );
movingImage->SetRegions( region );
movingImage->SetSpacing( spacing );
movingImage->SetOrigin( movingOrigin );
PopulateImage( fixedImage );
PopulateImage( movingImage );
pass &= RunTest( fixedImage, movingImage );
}
std::cout << std::endl << std::endl;
std::cout << "Running tests with itk::Image" << std::endl;
{
// Create Images
typedef itk::Image<unsigned char, Dimension> FixedImageType;
typedef itk::Image<unsigned char, Dimension> MovingImageType;
typedef FixedImageType::SizeType SizeType;
typedef FixedImageType::SpacingType SpacingType;
typedef FixedImageType::PointType PointType;
typedef FixedImageType::IndexType IndexType;
typedef FixedImageType::RegionType RegionType;
typedef FixedImageType::DirectionType DirectionType;
SizeType size;
size[0] = 100;
size[1] = 100;
size[2] = 60;
PointType fixedOrigin;
fixedOrigin[0] = 0.0;
fixedOrigin[1] = 0.0;
fixedOrigin[2] = 0.0;
PointType movingOrigin;
movingOrigin[0] = 29.0;
movingOrigin[1] = 17.0;
movingOrigin[2] = 13.0;
SpacingType spacing;
spacing[0] = 1.5;
spacing[1] = 1.5;
spacing[2] = 2.5;
IndexType fixedIndex;
fixedIndex[0] = 0;
fixedIndex[1] = 0;
fixedIndex[2] = 0;
IndexType movingIndex;
movingIndex[0] = 10;
movingIndex[1] = 20;
movingIndex[2] = 30;
RegionType fixedRegion;
fixedRegion.SetSize( size );
fixedRegion.SetIndex( fixedIndex );
RegionType movingRegion;
movingRegion.SetSize( size );
movingRegion.SetIndex( movingIndex );
typedef itk::Versor< itk::SpacePrecisionType > VersorType;
VersorType x; x.SetRotationAroundX( 0.5 );
VersorType y; y.SetRotationAroundY( 1.0 );
VersorType z; z.SetRotationAroundZ( 1.5 );
DirectionType fixedDirection = (x*y*z).GetMatrix();
DirectionType movingDirection = (z*y*x).GetMatrix();
FixedImageType::Pointer fixedImage = FixedImageType::New();
MovingImageType::Pointer movingImage = MovingImageType::New();
fixedImage->SetRegions( fixedRegion );
fixedImage->SetSpacing( spacing );
fixedImage->SetOrigin( fixedOrigin );
fixedImage->SetDirection( fixedDirection );
movingImage->SetRegions( movingRegion );
movingImage->SetSpacing( spacing );
movingImage->SetOrigin( movingOrigin );
movingImage->SetDirection( movingDirection );
PopulateImage( fixedImage );
PopulateImage( movingImage );
pass &= RunTest( fixedImage, movingImage );
}
if( !pass )
{
std::cout << "Test FAILED." << std::endl;
return EXIT_FAILURE;
}
std::cout << "Test PASSED." << std::endl;
return EXIT_SUCCESS;
}
|