/*========================================================================= * * Copyright NumFOCUS * * 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 * * https://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 *[]) { using ImageType = itk::Image; itk::ImageFileReader::Pointer reader = itk::ImageFileReader::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::Pointer Rawio; Rawio = itk::RawImageIO::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; }