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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkGEImageIOTest.cxx
Language: C++
Date: $Date$
Version: $Revision$
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 <string>
#include "itkGEAdwImageIO.h"
#include "itkGE4ImageIO.h"
#include "itkGE5ImageIO.h"
#include "itkSiemensVisionImageIO.h"
#include "itkGEAdwImageIOFactory.h"
#include "itkGE4ImageIOFactory.h"
#include "itkGE5ImageIOFactory.h"
#include "itkSiemensVisionImageIOFactory.h"
#include "itkImageIOFactory.h"
#include "itkExceptionObject.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkImage.h"
#include <itksys/SystemTools.hxx>
typedef itk::Image<signed short, 3> ImageType ;
typedef ImageType::Pointer ImagePointer ;
typedef itk::ImageFileReader< ImageType > ImageReaderType ;
typedef itk::ImageFileWriter< ImageType > ImageWriterType ;
int itkGEImageIOFactoryTest(int ac, char * av[])
{
static bool firstTime = true;
if(firstTime)
{
itk::ObjectFactoryBase::RegisterFactory(itk::GEAdwImageIOFactory::New() );
itk::ObjectFactoryBase::RegisterFactory(itk::GE4ImageIOFactory::New() );
itk::ObjectFactoryBase::RegisterFactory(itk::GE5ImageIOFactory::New() );
itk::ObjectFactoryBase::RegisterFactory(itk::SiemensVisionImageIOFactory::New() );
firstTime = false;
}
if(ac < 2)
{
return EXIT_FAILURE;
}
char *filename = *++av;
ImagePointer input ;
ImageReaderType::Pointer imageReader = ImageReaderType::New() ;
try
{
imageReader->SetFileName(filename);
imageReader->Update() ;
input = imageReader->GetOutput() ;
}
catch (itk::ExceptionObject &e)
{
std::cout << "Caught unexpected exception. Test Failed!" << std::endl;
std::cout << e << std::endl;
return EXIT_FAILURE;
}
return EXIT_SUCCESS;
}
int itkGEImageIOTest(int ac, char * av[])
{
//
// first argument is passing in the writable directory to do all testing
if(ac > 1) {
char *testdir = *++av;
--ac;
itksys::SystemTools::ChangeDirectory(testdir);
}
if((ac != 5) && (ac != 4))
{
return EXIT_FAILURE;
}
std::string failmode(av[1]);
std::string filetype(av[2]);
std::string filename(av[3]);
bool Failmode = failmode == std::string("true");
itk::ImageIOBase::Pointer io;
if(filetype == "GE4")
{
io = itk::GE4ImageIO::New();
}
else if(filetype == "GE5")
{
io = itk::GE5ImageIO::New();
}
else if(filetype == "GEAdw")
{
io = itk::GEAdwImageIO::New();
}
else if(filetype == "Siemens")
{
io = itk::SiemensVisionImageIO::New();
}
else
{
return EXIT_FAILURE;
}
ImagePointer input ;
ImageReaderType::Pointer imageReader = ImageReaderType::New() ;
try
{
imageReader->SetImageIO(io);
imageReader->SetFileName(filename.c_str()) ;
imageReader->Update() ;
input = imageReader->GetOutput() ;
}
catch (itk::ExceptionObject &e)
{
if (Failmode)
{
std::cout << "Caught unexpected exception. Test Failed!" << std::endl;
}
else
{
std::cout << "Caught expected exception. Test Passed!" << std::endl;
return EXIT_SUCCESS;
}
std::cout << e << std::endl;
return Failmode ? 1 : 0;
}
if (failmode == std::string("true"))
{
ImageWriterType::Pointer writer = ImageWriterType::New();
writer->SetInput( input );
writer->SetFileName( av[4] );
writer->Update();
}
return Failmode ? 0 : 1;
}
|