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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkAffineGeometryFrameTest.cxx,v $
Language: C++
Date: $Date: 2005-03-24 01:12:55 $
Version: $Revision: 1.2 $
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
#include "itkAffineGeometryFrame.h"
#include "itkTreeContainer.h"
#include "itkSpatialObjectTreeContainer.h"
#include "itkInOrderTreeIterator.h"
#include "itkLevelOrderTreeIterator.h"
#include <iostream>
/**
* This is a test file for the itkAffineGeometryFrame class.
*/
int itkAffineGeometryFrameTest(int, char* [])
{
typedef itk::AffineGeometryFrame<> AffineGeometryFrameType;
AffineGeometryFrameType::Pointer geometryFrame1 = AffineGeometryFrameType::New();
std::cout << "Testing Initialize(): ";
geometryFrame1->Initialize();
std::cout<<"[DONE]"<<std::endl;
std::cout << "Testing GetBoundingBox(): ";
if(geometryFrame1->GetBoundingBox()==NULL)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetIndexToObjectTransform(): ";
if(geometryFrame1->GetIndexToObjectTransform()==NULL)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetObjectToNodeTransform(): ";
if(geometryFrame1->GetObjectToNodeTransform()==NULL)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing SetBounds(): ";
AffineGeometryFrameType::BoundingBoxType::CoordRepType bounds[6] = {3, 10, 5, 12, 7, 17};
geometryFrame1->SetBounds(bounds);
std::cout<<"[DONE]"<<std::endl;
std::cout << "Testing GetExtent() of geometry-frame: ";
if((geometryFrame1->GetExtent(0)!=bounds[1]-bounds[0]) ||
(geometryFrame1->GetExtent(1)!=bounds[3]-bounds[2]) ||
(geometryFrame1->GetExtent(2)!=bounds[5]-bounds[4]) )
{
std::cerr << " [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetIndexToObjectTransform()->SetOffset()/...->GetOffset(): ";
AffineGeometryFrameType::TransformType::OffsetType offset;
offset.Fill(10);
geometryFrame1->GetIndexToObjectTransform()->SetOffset(offset);
AffineGeometryFrameType::TransformType::OffsetType diff;
diff = geometryFrame1->GetIndexToObjectTransform()->GetOffset()-offset;
if(diff.GetNorm()!=0)
{
std::cerr << " [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing Clone(): ";
AffineGeometryFrameType::Pointer clonedGeometryFrame1 = geometryFrame1->Clone();
std::cout<<"[DONE]"<<std::endl;
std::cout << "Testing GetBoundingBox() of cloned geometry-frame: ";
if(clonedGeometryFrame1->GetBoundingBox()==NULL)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetIndexToObjectTransform() of cloned geometry-frame: ";
if(clonedGeometryFrame1->GetIndexToObjectTransform()==NULL)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetObjectToNodeTransform() of cloned geometry-frame: ";
if(clonedGeometryFrame1->GetObjectToNodeTransform()==NULL)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetBoundingBox() of cloned geometry-frame: ";
const AffineGeometryFrameType::BoundsArrayType& boundsArray = clonedGeometryFrame1->GetBoundingBox()->GetBounds();
unsigned int i;
for(i=0; i<6; ++i)
if(boundsArray[i]!=bounds[i])
{
std::cerr << "clonedBounds[" <<i<< "]=" << boundsArray[i] << "!=" <<bounds[i] << "[FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetExtent() of cloned geometry-frame: ";
if((clonedGeometryFrame1->GetExtent(0)!=bounds[1]-bounds[0]) ||
(clonedGeometryFrame1->GetExtent(1)!=bounds[3]-bounds[2]) ||
(clonedGeometryFrame1->GetExtent(2)!=bounds[5]-bounds[4]) )
{
std::cerr << " [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetIndexToObjectTransform()->GetOffset() of cloned geometry-frame: ";
diff = clonedGeometryFrame1->GetIndexToObjectTransform()->GetOffset()-offset;
if(diff.GetNorm()!=0)
{
std::cerr << " [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing independency of IndexToObjectTransform of original and cloned geometry-frame: ";
offset.Fill(15);
geometryFrame1->GetIndexToObjectTransform()->SetOffset(offset);
diff = clonedGeometryFrame1->GetIndexToObjectTransform()->GetOffset()-offset;
if(diff.GetNorm()==0)
{
std::cerr << " [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing independency of ObjectToNodeTransform of original and cloned geometry-frame: ";
geometryFrame1->GetObjectToNodeTransform()->SetOffset(offset);
diff = clonedGeometryFrame1->GetObjectToNodeTransform()->GetOffset()-offset;
if(diff.GetNorm()==0)
{
std::cerr << " [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout<<"[TEST DONE]"<<std::endl;
return EXIT_SUCCESS;
}
|