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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkStatisticsAlgorithmTest.cxx,v $
Language: C++
Date: $Date: 2009-05-08 16:31:08 $
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 "itkArray.h"
#include "itkVariableLengthVector.h"
#include "itkListSample.h"
#include "itkStatisticsAlgorithm.h"
int itkStatisticsAlgorithmTest( int, char * [] )
{
std::cout << "StatisticsAlgorithm Test \n \n";
const unsigned int measurementVectorSize = 2;
typedef itk::Array< float > MeasurementVectorType;
typedef itk::Statistics::ListSample< MeasurementVectorType > SampleType;
SampleType::Pointer sample = SampleType::New();
SampleType::MeasurementVectorType lower( measurementVectorSize );
SampleType::MeasurementVectorType upper( measurementVectorSize );
const SampleType * constSample = sample.GetPointer();
// Testing the exception throwing for samples of measurement size = 0
sample->SetMeasurementVectorSize( 0 );
try
{
itk::Statistics::Algorithm::FindSampleBound(
constSample,
constSample->Begin(), constSample->End(),
lower, upper
);
std::cerr << "Failure to throw expected exception when " << std::endl;
std::cerr << " MeasurementVectorType() has been set to zero" << std::endl;
return EXIT_FAILURE;
}
catch( itk::ExceptionObject & )
{
std::cout << "Got Expected exception" << std::endl;
}
// Now set the correct measurement vector size
sample->SetMeasurementVectorSize( measurementVectorSize );
// Testing the equivalent of an empty sample by passing
// the Begin() iterator inlieu of the End() iterator.
//
try
{
itk::Statistics::Algorithm::FindSampleBound(
constSample,
constSample->Begin(), constSample->Begin(),
lower, upper
);
std::cerr << "Failure to throw expected exception when " << std::endl;
std::cerr << " attempting to compute bound of an empty sample list" << std::endl;
return EXIT_FAILURE;
}
catch( itk::ExceptionObject & excp )
{
std::cout << excp << std::endl;
}
MeasurementVectorType measure( measurementVectorSize );
MeasurementVectorType realUpper( measurementVectorSize );
MeasurementVectorType realLower( measurementVectorSize );
const unsigned int numberOfSamples = 25;
realLower.Fill( 1000 );
realUpper.Fill( 0 );
// Force the first value not to be the min or max.
measure[0] = 13;
measure[1] = 39;
sample->PushBack( measure );
for( unsigned int i = 1; i < numberOfSamples; i++ )
{
float value = i + 3;
measure[0] = value;
measure[1] = value * value;
sample->PushBack( measure );
for(unsigned int j = 0; j < measurementVectorSize; j++ )
{
if( measure[j] < realLower[j] )
{
realLower[j] = measure[j];
}
if( measure[j] > realUpper[j] )
{
realUpper[j] = measure[j];
}
}
}
// Now testing the real algorithm
try
{
itk::Statistics::Algorithm::FindSampleBound(
constSample,
constSample->Begin(), constSample->End(),
lower, upper
);
}
catch( itk::ExceptionObject & excp )
{
std::cout << excp << std::endl;
return EXIT_FAILURE;
}
const float epsilon = 1e-5;
for(unsigned int j = 0; j < measurementVectorSize; j++ )
{
if( vnl_math_abs( lower[j] - realLower[j] ) > epsilon )
{
std::cerr << "FindSampleBound() failed" << std::endl;
std::cerr << "Expected lower = " << realLower << std::endl;
std::cerr << "Computed lower = " << lower << std::endl;
return EXIT_FAILURE;
}
if( vnl_math_abs( upper[j] - realUpper[j] ) > epsilon )
{
std::cerr << "FindSampleBound() failed" << std::endl;
std::cerr << "Expected upper = " << realUpper << std::endl;
std::cerr << "Computed upper = " << upper << std::endl;
return EXIT_FAILURE;
}
}
std::cout << "Test passed." << std::endl;
return EXIT_SUCCESS;
}
|