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
|
/*=========================================================================
*
* 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 "itkSpatialObjectTreeContainer.h"
#include <iostream>
#include "itkMath.h"
/**
* 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 Print before initialization" << std::endl;
geometryFrame1->Print(std::cout);
std::cout << "Testing Initialize(): ";
geometryFrame1->Initialize();
std::cout<<"[DONE]"<<std::endl;
std::cout << "Testing GetBoundingBox(): ";
if(geometryFrame1->GetBoundingBox() == ITK_NULLPTR)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetIndexToObjectTransform(): ";
if(geometryFrame1->GetIndexToObjectTransform() == ITK_NULLPTR)
{
std::cerr << "not initialized [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout<<"[PASSED]"<<std::endl;
std::cout << "Testing GetObjectToNodeTransform(): ";
if(geometryFrame1->GetObjectToNodeTransform() == ITK_NULLPTR)
{
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(itk::Math::NotAlmostEquals(geometryFrame1->GetExtent(0), bounds[1]-bounds[0]) ||
itk::Math::NotAlmostEquals(geometryFrame1->GetExtent(1), bounds[3]-bounds[2]) ||
itk::Math::NotAlmostEquals(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->GetModifiableIndexToObjectTransform()->SetOffset(offset);
AffineGeometryFrameType::TransformType::OffsetType diff;
diff = geometryFrame1->GetIndexToObjectTransform()->GetOffset()-offset;
if(itk::Math::NotAlmostEquals(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() == ITK_NULLPTR)
{
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() == ITK_NULLPTR)
{
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() == ITK_NULLPTR)
{
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(itk::Math::NotExactlyEquals(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(itk::Math::NotAlmostEquals(clonedGeometryFrame1->GetExtent(0), bounds[1]-bounds[0]) ||
itk::Math::NotAlmostEquals(clonedGeometryFrame1->GetExtent(1), bounds[3]-bounds[2]) ||
itk::Math::NotAlmostEquals(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(itk::Math::NotExactlyEquals(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->GetModifiableIndexToObjectTransform()->SetOffset(offset);
diff = clonedGeometryFrame1->GetIndexToObjectTransform()->GetOffset()-offset;
if(itk::Math::ExactlyEquals(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->GetModifiableObjectToNodeTransform()->SetOffset(offset);
diff = clonedGeometryFrame1->GetObjectToNodeTransform()->GetOffset()-offset;
if(itk::Math::ExactlyEquals(diff.GetNorm(), 0))
{
std::cerr << " [FAILED]" << std::endl;
return EXIT_FAILURE;
}
std::cout << "Testing Print after initialization" << std::endl;
geometryFrame1->Print(std::cout);
std::cout<<"[PASSED]"<<std::endl;
std::cout<<"[TEST DONE]"<<std::endl;
return EXIT_SUCCESS;
}
|