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
|
/*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#include "itkBioRadImageIO.h"
#include "itkGE4ImageIO.h"
#include "itkGE5ImageIO.h"
#include "itkGEAdwImageIO.h"
#include "itkGiplImageIO.h"
#include "itkImageFileReader.h"
#include "itkJPEGImageIO.h"
#include "itkLSMImageIO.h"
#include "itkMetaImageIO.h"
#include "itkPNGImageIO.h"
#include "itkRawImageIO.h"
#include "itkStimulateImageIO.h"
#include "itkTIFFImageIO.h"
#include "itkVTKImageIO.h"
int itkIOPrintTest(int , char* [])
{
typedef itk::Image<unsigned char,2> ImageType;
itk::ImageFileReader<ImageType>::Pointer reader =
itk::ImageFileReader<ImageType>::New();
itk::PNGImageIO::Pointer PNGio;
PNGio = itk::PNGImageIO::New();
reader->SetImageIO(PNGio);
std::cout << "---------------PNG" << reader;
itk::BioRadImageIO::Pointer BioRadio;
BioRadio = itk::BioRadImageIO::New();
reader->SetImageIO(BioRadio);
std::cout << "---------------BioRad" << reader;
itk::GE4ImageIO::Pointer GE4io;
GE4io = itk::GE4ImageIO::New();
reader->SetImageIO(GE4io);
std::cout << "---------------GE4" << reader;
itk::GE5ImageIO::Pointer GE5io;
GE5io = itk::GE5ImageIO::New();
reader->SetImageIO(GE5io);
std::cout << "---------------GE5" << reader;
itk::GEAdwImageIO::Pointer GEAdwio;
GEAdwio = itk::GEAdwImageIO::New();
reader->SetImageIO(GEAdwio);
std::cout << "---------------GEAdw" << reader;
itk::GiplImageIO::Pointer Giplio;
Giplio = itk::GiplImageIO::New();
reader->SetImageIO(Giplio);
std::cout << "---------------Gipl" << reader;
itk::JPEGImageIO::Pointer JPEGio;
JPEGio = itk::JPEGImageIO::New();
reader->SetImageIO(JPEGio);
std::cout << "---------------JPEG" << reader;
itk::LSMImageIO::Pointer LSMio;
LSMio = itk::LSMImageIO::New();
reader->SetImageIO(LSMio);
std::cout << "---------------LSM" << reader;
itk::MetaImageIO::Pointer Metaio;
Metaio = itk::MetaImageIO::New();
reader->SetImageIO(Metaio);
std::cout << "---------------Meta" << reader;
itk::RawImageIO<unsigned char>::Pointer Rawio;
Rawio = itk::RawImageIO<unsigned char>::New();
reader->SetImageIO(Rawio);
std::cout << "---------------Raw" << reader;
itk::StimulateImageIO::Pointer Stimulateio;
Stimulateio = itk::StimulateImageIO::New();
reader->SetImageIO(Stimulateio);
std::cout << "---------------Stimulate" << reader;
itk::TIFFImageIO::Pointer Tiffio;
Tiffio = itk::TIFFImageIO::New();
reader->SetImageIO(Tiffio);
std::cout << "---------------TIFF" << reader;
itk::VTKImageIO::Pointer VTKio;
VTKio = itk::VTKImageIO::New();
reader->SetImageIO(VTKio);
std::cout << "---------------VTK" << reader;
return EXIT_SUCCESS;
}
|