📄 itksimplexmeshvolumecalculatortest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkSimplexMeshVolumeCalculatorTest.cxx,v $
Language: C++
Date: $Date: 2006-06-07 02:58:00 $
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 <math.h>
#include <iostream>
#include "itkMesh.h"
#include "itkSimplexMesh.h"
#include "itkSimplexMeshGeometry.h"
#include "itkSimplexMeshVolumeCalculator.h"
#include "itkRegularSphereMeshSource.h"
#include "itkDefaultDynamicMeshTraits.h"
#include "itkTriangleMeshToSimplexMeshFilter.h"
int itkSimplexMeshVolumeCalculatorTest(int , char *[] )
{
// Declare the type of the input and output mesh
typedef itk::DefaultDynamicMeshTraits<double, 3, 3, double, double, double> MeshTraits;
typedef itk::Mesh<double,3,MeshTraits> TriangleMeshType;
typedef itk::SimplexMesh<double,3,MeshTraits> SimplexMeshType;
// declare triangle mesh source
typedef itk::RegularSphereMeshSource<TriangleMeshType> SphereMeshSourceType;
typedef SphereMeshSourceType::PointType PointType;
typedef SphereMeshSourceType::VectorType VectorType;
// Declare the type of the gradient image
typedef itk::TriangleMeshToSimplexMeshFilter<TriangleMeshType, SimplexMeshType> SimplexFilterType;
SphereMeshSourceType::Pointer mySphereMeshSource = SphereMeshSourceType::New();
PointType center; center.Fill(0);
PointType::ValueType scaleInit[3] = {10,10,10};
VectorType scale = scaleInit;
mySphereMeshSource->SetCenter(center);
mySphereMeshSource->SetScale(scale);
SimplexFilterType::Pointer simplexFilter = SimplexFilterType::New();
simplexFilter->SetInput( mySphereMeshSource->GetOutput() );
typedef itk::SimplexMeshVolumeCalculator<
SimplexMeshType > VolumeCalculatorType;
VolumeCalculatorType::Pointer calculator = VolumeCalculatorType::New();
calculator->SetSimplexMesh( simplexFilter->GetOutput() );
for ( int i = 1; i <= 5; i++)
{
mySphereMeshSource->SetResolution(i);
simplexFilter->Update();
calculator->Compute();
std::cout << "Resolution: " << i
<< ", Volume: " << calculator->GetVolume()
<< ", Area: " << calculator->GetArea()
<< std::endl;
}
calculator->Print(std::cout);
double volume = calculator->GetVolume();
const double pi = vcl_atan(1.0) * 4.0;
const double knownVolume = 4.0/3.0 * pi * (1000.0); // scale was 10 = radius
std::cout << "knownVolume: " << knownVolume << " versus computedVolume: " << volume << std::endl;
if( vnl_math_abs( volume - knownVolume ) > (1e-2 * knownVolume) )
{
std::cerr << "Error in the Volume computation " << std::endl;
std::cerr << "We expected " << knownVolume << std::endl;
std::cerr << "But we got " << volume << std::endl;
return EXIT_FAILURE;
}
std::cout << "[TEST DONE]" << std::endl;
return EXIT_SUCCESS;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -