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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkPhasedArray3DSpecialCoordinatesImageTest.cxx
Language: C++
Date: $Date$
Version: $Revision$
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 <iostream>
#include "itkPhasedArray3DSpecialCoordinatesImage.h"
#include "vnl/vnl_math.h"
int itkPhasedArray3DSpecialCoordinatesImageTest(int, char* [] )
{
bool passed = true;
typedef itk::PhasedArray3DSpecialCoordinatesImage<float> Image;
typedef Image::RegionType RegionType;
typedef Image::SizeType SizeType;
typedef Image::PointType PointType;
typedef Image::IndexType IndexType;
typedef itk::ContinuousIndex<double,3> ContinuousIndexType;
Image::Pointer image = Image::New();
//image->DebugOn();
//image->GetSource();
SizeType size;
size.Fill(5); // 5x5x5 sampling of data
RegionType region;
region.SetSize(size);
image->SetRegions(region);
image->DisconnectPipeline();
/** Set the number of radians between each azimuth unit. **/
image->SetAzimuthAngularSeparation( 15.0*2.0*vnl_math::pi/360.0 );
/** Set the number of radians between each elevation unit. **/
image->SetElevationAngularSeparation( 15.0*2.0*vnl_math::pi/360.0 );
/** Set the number of cartesian units between each unit along the R . **/
image->SetRadiusSampleSize( 1 );
/** Set the distance to add to the radius. */
image->SetFirstSampleDistance( 2 );
image->Print(std::cout);
std::cout<<std::endl;
PointType point;
IndexType index;
ContinuousIndexType continuousIndex;
point.Fill(0.05); point[2]=3.1;
image->TransformPhysicalPointToIndex(point, index);
std::cout<<"Point "<<point<<" -> Index "<<index<<std::endl;
image->TransformPhysicalPointToContinuousIndex(point, continuousIndex);
std::cout<<"Point "<<point<<" -> Continuous Index "<<continuousIndex<<std::endl;
if( index[0] != 2
|| index[1] != 2
|| index[2] != 1 )
{
passed = false;
}
index.Fill(1);
image->TransformIndexToPhysicalPoint(index, point);
std::cout<<"Index "<<index<<" -> Point "<<point<<std::endl;
continuousIndex.Fill(3.5);
image->TransformContinuousIndexToPhysicalPoint(continuousIndex, point);
std::cout<<"Continuous Index "<<continuousIndex<<" -> Point "<<point<<std::endl;
continuousIndex.Fill(2.0);
image->TransformContinuousIndexToPhysicalPoint(continuousIndex, point);
std::cout<<"Continuous Index "<<continuousIndex<<" -> Point "<<point<<std::endl;
if( point[0] < -0.001 || point[0] > 0.001
|| point[1] < -0.001 || point[1] > 0.001
|| point[2] < -4.001 || point[2] > 4.001 )
{
passed = false;
}
std::cout<<std::endl;
if (passed)
{
std::cout << "PhasedArray3DSpecialCoordinatesImage tests passed" << std::endl;
return EXIT_SUCCESS;
}
else
{
std::cout << "PhasedArray3DSpecialCoordinatesImage tests failed" << std::endl;
return EXIT_FAILURE;
}
}
|