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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkCompositeValleyFunctionTest.cxx,v $
Language: C++
Date: $Date: 2005-02-08 04:20:01 $
Version: $Revision: 1.5 $
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 "vnl/vnl_math.h"
#include "itkCompositeValleyFunction.h"
#include "itkArray.h"
#include "itkNumericTraits.h"
int itkCompositeValleyFunctionTest(int , char* [] )
{
itk::Array< double > means(2) ;
itk::Array< double > sigmas(2) ;
means[0] = 0.0 ;
means[1] = 100.0 ;
sigmas[0] = 20.0 ;
sigmas[1] = 20.0 ;
itk::CompositeValleyFunction function(means, sigmas) ;
if ( function.GetUpperBound() != 280.0 )
{
std::cout << "Test fails: GetUpperBound()" << std::endl ;
return EXIT_FAILURE ;
}
if ( function.GetLowerBound() != -180.0 )
{
std::cout << "Test fails: GetLowerBound()" << std::endl ;
return EXIT_FAILURE ;
}
std::cout.setf(std::ios::scientific) ;
std::cout.precision(12) ;
double interval1 = function.GetInterval() ;
double interval2 =
( function.GetUpperBound() - function.GetLowerBound() )
/ (1000000.0 - 1.0) ;
if ( vnl_math_abs( interval1 - interval2 ) >
itk::NumericTraits< double >::epsilon() )
{
std::cout << "Test fails: GetInterval()" << std::endl ;
std::cout << "Interval from the GetInterval() = " << interval1
<< std::endl ;
std::cout << "Interval value using the calculation = " << interval2
<< std::endl ;
return EXIT_FAILURE ;
}
long numberOfSamples = function.GetNumberOfSamples() ;
double measure = function.GetLowerBound() + interval1* numberOfSamples * 0.5 ;
double value1 = function( measure ) ;
double value2 = function.Evaluate( measure ) ;
if ( vnl_math_abs(value1 - value2) >
itk::NumericTraits< double >::epsilon())
{
std::cout << "diff = " << vnl_math_abs(value1 - value2) << std::endl ;
std::cout << "Test fails: operator()" << std::endl ;
return EXIT_FAILURE ;
}
std::cout << "Test succeed" << std::endl ;
return EXIT_SUCCESS ;
}
|