📄 itkmultivariatelegendrepolynomialtest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkMultivariateLegendrePolynomialTest.cxx,v $
Language: C++
Date: $Date: 2005-02-08 04:20:01 $
Version: $Revision: 1.9 $
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 "itkMultivariateLegendrePolynomial.h"
/**
* This test exercise the functionality of the
*
* itk::MultivariateLegendrePolynomial class
*
*/
int itkMultivariateLegendrePolynomialTest(int , char* [] )
{
typedef itk::MultivariateLegendrePolynomial PolynomialType;
const unsigned int dimension = 3;
const unsigned int degree = 3;
PolynomialType::DomainSizeType domainSize(dimension);
domainSize[0] = 2 ;
domainSize[1] = 2 ;
domainSize[2] = 2 ;
PolynomialType polynomial( dimension, degree, domainSize );
if ( polynomial.GetDimension() != dimension )
{
std::cout << "Test fails: GetDimension()" << std::endl ;
return EXIT_FAILURE ;
}
if ( polynomial.GetDegree() != degree )
{
std::cout << "Test fails: GetDegree()" << std::endl ;
return EXIT_FAILURE ;
}
if ( polynomial.GetDomainSize() != domainSize )
{
std::cout << "Test fails: GetDomainSize()" << std::endl ;
return EXIT_FAILURE ;
}
if ( polynomial.GetNumberOfCoefficients() != 20 )
{
std::cout << "Test fails: GetNumberOfCoefficients()" << std::endl ;
return EXIT_FAILURE ;
}
PolynomialType::CoefficientArrayType coefficients(20) ;
std::fill(coefficients.begin(), coefficients.end(), 0.1) ;
try
{
polynomial.SetCoefficients( coefficients ) ;
}
catch ( ... )
{
}
PolynomialType::SimpleForwardIterator bIter( &polynomial ) ;
bIter.Begin() ;
while (!bIter.IsAtEnd())
{
bIter.Get() ;
++bIter ;
}
std::cout << "Test succeeded." << std::endl;
return EXIT_SUCCESS ;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -