⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 itkpushpoptileimagefiltertest.cxx

📁 DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.
💻 CXX
字号:
/*=========================================================================

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile: itkPushPopTileImageFilterTest.cxx,v $
  Language:  C++
  Date:      $Date: 2007-08-10 14:34:02 $
  Version:   $Revision: 1.2 $

  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 "itkTileImageFilter.h"
#include "itkRGBPixel.h"
#include "itkImageFileReader.h"
#include "itkImageSeriesWriter.h"

int itkPushPopTileImageFilterTest(int argc, char *argv[] )
{

  typedef itk::RGBPixel<unsigned char> PixelType;
  enum { InputImageDimension = 2 };
  enum { OutputImageDimension = 2 };

  typedef itk::Image<PixelType,InputImageDimension> InputImageType;
  typedef itk::Image<PixelType,OutputImageDimension> OutputImageType;
  typedef itk::ImageFileReader< InputImageType > ImageReaderType ;
  typedef itk::TileImageFilter<InputImageType,OutputImageType> TilerType;
  typedef itk::ImageFileWriter<OutputImageType> WriterType; 

  if (argc != 6)
    {
    std::cerr << "Usage: " << std::endl;
    std::cerr << argv[0] << "  input1 input2 input3 input4 output" << std::endl;
    return EXIT_FAILURE;
    }

  itk::FixedArray<unsigned int,2> layout;
  layout[0] = 4;
  layout[1] = 1;

  // Tile the input images
  TilerType::Pointer tiler1 = TilerType::New();
  TilerType::Pointer tiler2 = TilerType::New();
  TilerType::Pointer tiler3 = TilerType::New();
  TilerType::Pointer tiler4 = TilerType::New();
  TilerType::Pointer tiler = TilerType::New();

  unsigned char yellow[3] = {255, 255, 127};
  itk::RGBPixel<unsigned char> fillPixel = yellow;

  tiler1->SetDefaultPixelValue(fillPixel);
  tiler1->SetLayout(layout);
  tiler2->SetDefaultPixelValue(fillPixel);
  tiler2->SetLayout(layout);
  tiler3->SetDefaultPixelValue(fillPixel);
  tiler3->SetLayout(layout);
  tiler4->SetDefaultPixelValue(fillPixel);
  tiler4->SetLayout(layout);

  int f = 0;
  for (int i=1; i < argc - 1; i++)
    {
    ImageReaderType::Pointer reader = ImageReaderType::New();
    reader->SetFileName (argv[i]);
    reader->Update();
    tiler1->SetInput(f,reader->GetOutput());
    tiler2->SetInput(f,reader->GetOutput());
    tiler3->SetInput(f,reader->GetOutput());
    tiler4->SetInput(f++,reader->GetOutput());
    }

  InputImageType::ConstPointer image;

  tiler3->PopBackInput();

  image = tiler4->GetInput();
  tiler4->PopFrontInput();
  tiler4->PushBackInput(image);

  image = tiler2->GetInput(3);
  tiler2->PopBackInput();
  tiler2->PushFrontInput(image);

  layout[0] = 1;
  layout[1] = 4;
  tiler->SetDefaultPixelValue(fillPixel);
  tiler->SetLayout(layout);

  tiler->PushBackInput(tiler1->GetOutput());
  tiler->PushBackInput(tiler2->GetOutput());
  tiler->PushBackInput(tiler3->GetOutput());
  tiler->PushBackInput(tiler4->GetOutput());

  WriterType::Pointer writer = WriterType::New();

  writer->SetFileName(  argv[argc-1] );

  try
    {
    writer->SetInput(tiler->GetOutput());
    writer->Update();
    }
  catch( itk::ExceptionObject & excp )
    {
    std::cerr << "Error while writing file." << std::endl;
    std::cerr << excp << std::endl;
    return EXIT_FAILURE;

    }
  std::cout << "Test passed." << std::endl;
  return EXIT_SUCCESS;

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -