📄 testmetatube.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: testMetaTube.cxx,v $
Language: C++
Date: $Date: 2008-05-26 11:54:17 $
Version: $Revision: 1.8 $
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 <iostream>
#include <ctype.h>
#include <cstdlib>
#include <metaTube.h>
#include <metaScene.h>
#include <metaEllipse.h>
int testMetaTube(int , char * [])
{
std::cout << "Initializing scene ..." << std::endl;
MetaScene myScene = MetaScene(3);
std::cout << "Creating test file ..." << std::endl;
//MetaTubeNet* tubenet = new MetaTubeNet();
// add two tube to the list of tubenet
std::cout << " Creating first tube ..." << std::endl;
MetaTube* tube1 = new MetaTube(3);
tube1->ID(0);
TubePnt* pnt;
unsigned int i;
for(i=0;i<10;i++)
{
pnt = new TubePnt(3);
pnt->m_X[0]=pnt->m_X[1]=pnt->m_X[2]=static_cast<float>(i);
pnt->m_R=static_cast<float>(i);
tube1->GetPoints().push_back(pnt);
}
std::cout << " Creating second tube ..." << std::endl;
MetaTube* tube2 = new MetaTube(3);
tube2->ID(1);
for(i=0;i<5;i++)
{
pnt = new TubePnt(3);
pnt->m_X[0]=pnt->m_X[1]=pnt->m_X[2]=static_cast<float>(i);
pnt->m_R=static_cast<float>(i);
tube2->GetPoints().push_back(pnt);
}
// Add an ellipse
std::cout << " Creating ellipse ..." << std::endl;
MetaEllipse* ellipse = new MetaEllipse();
std::cout << " Initializing ellipse ..." << std::endl;
ellipse->InitializeEssential(3);
std::cout << " Setting radius ..." << std::endl;
ellipse->Radius(1,2,3);
myScene.AddObject(tube1);
myScene.AddObject(tube2);
myScene.AddObject(ellipse);
myScene.Write("test.scn");
std::cout << "done" << std::endl;
std::cout << "Reading test file ..." << std::endl;
// Read the result
MetaScene myScene2 = MetaScene();
myScene2.InitializeEssential(3);
std::cout << " ... reading scene " << std::endl;
myScene2.Read("test.scn");
std::cout << " ... read scene " << std::endl;
typedef MetaScene::ObjectListType ListType;
ListType * list = myScene2.GetObjectList();
ListType::iterator it = list->begin();
std::cout << " ... beginning loop " << std::endl;
for(i=0;i< list->size();i++)
{
(*it)->PrintInfo();
if(!strncmp((*it)->ObjectTypeName(),"Tube",4))
{
typedef MetaTube::PointListType ListType;
MetaTube* tube = dynamic_cast<MetaTube*>(*it);
ListType::iterator it2 = tube->GetPoints().begin();
for(unsigned int j=0;j< tube->GetPoints().size();j++)
{
std::cout << (*it2)->m_X[0]
<< " " << (*it2)->m_X[1] << " " << (*it2)->m_X[2] << std::endl;
it2++;
}
}
it++;
}
std::cout << "done" << std::endl;
return EXIT_SUCCESS;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -