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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: testMetaSurface.cxx,v $
Language: C++
Date: $Date: 2005-02-24 17:03:22 $
Version: $Revision: 1.11 $
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 <stdio.h>
#include <ctype.h>
#include <metaSurface.h>
int testMetaSurface(int , char * [])
{
std::cout << "Creating test file ...";
MetaSurface* surface = new MetaSurface(3);
surface->ID(0);
SurfacePnt* pnt;
unsigned int i;
for(i=0;i<10;i++)
{
pnt = new SurfacePnt(3);
pnt->m_X[0]=(float)0.2;
pnt->m_X[1]=static_cast<float>(i);
pnt->m_X[2]=static_cast<float>(i);
pnt->m_V[0]=(float)0.8;
pnt->m_V[1]=static_cast<float>(i);
pnt->m_V[2]=static_cast<float>(i);
surface->GetPoints().push_back(pnt);
}
std::cout << "Writing ASCII test file ...";
surface->Write("mySurface.meta");
std::cout << "done" << std::endl;
std::cout << "Reading ASCII test file ...";
surface->Clear();
surface->Read("mySurface.meta");
surface->PrintInfo();
MetaSurface::PointListType list = surface->GetPoints();
MetaSurface::PointListType::const_iterator it = list.begin();
unsigned int d;
while(it != list.end())
{
for(d = 0; d < 3; d++)
{
std::cout << (*it)->m_X[d] << " ";
}
std::cout << std::endl;
for(d = 0; d < 3; d++)
{
std::cout << (*it)->m_V[d] << " ";
}
std::cout << std::endl;
it++;
}
delete surface;
// Testing Binary Data
MetaSurface* surfaceBin = new MetaSurface(3);
for(i=0;i<10;i++)
{
pnt = new SurfacePnt(3);
pnt->m_X[0]=(float)0.2;
pnt->m_X[1]=static_cast<float>(i);
pnt->m_X[2]=static_cast<float>(i);
pnt->m_V[0]=(float)0.8;
pnt->m_V[1]=static_cast<float>(i);
pnt->m_V[2]=static_cast<float>(i);
surfaceBin->GetPoints().push_back(pnt);
}
std::cout << "Writing Binary test file ...";
surfaceBin->BinaryData(true);
surfaceBin->ElementType(MET_FLOAT);
surfaceBin->Write("mySurfaceBin.meta");
std::cout << "done" << std::endl;
std::cout << "Reading Binary test file ...";
surfaceBin->Clear();
surfaceBin->Read("mySurfaceBin.meta");
surfaceBin->PrintInfo();
MetaSurface::PointListType list2 = surfaceBin->GetPoints();
it = list2.begin();
while(it != list2.end())
{
for(d = 0; d < 3; d++)
{
std::cout << (*it)->m_X[d] << " ";
}
std::cout << std::endl;
for(d = 0; d < 3; d++)
{
std::cout << (*it)->m_V[d] << " ";
}
std::cout << std::endl;
it++;
}
delete surfaceBin;
std::cout << "done" << std::endl;
return EXIT_SUCCESS;
}
|