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

📄 itkvectorindexselectioncastimagefiltertest.cxx

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

  Program:   Insight Segmentation & Registration Toolkit
  Module:    $RCSfile: itkVectorIndexSelectionCastImageFilterTest.cxx,v $
  Language:  C++
  Date:      $Date: 2006-05-29 19:44:46 $
  Version:   $Revision: 1.1 $

  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 <iostream>

#include "itkImage.h"
#include "itkVectorImage.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"

#include "itkVectorIndexSelectionCastImageFilter.h"

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

  if( argc < 4 )
    {
    std::cerr << "itkVectorIndexSelectionCastImageFilterTest "
              << " InputVectorImage OutputScalarImage indexToExtract"
              << std::endl;
    return EXIT_FAILURE;
    }

  typedef unsigned short InputPixelType;
  typedef unsigned short OutputPixelType;

  const unsigned int ImageDimension = 2;

  typedef itk::VectorImage< InputPixelType, ImageDimension > InputImageType;
  typedef itk::Image< OutputPixelType, ImageDimension  > OutputImageType;

  typedef itk::ImageFileReader< InputImageType  > ReaderType;
  typedef itk::ImageFileWriter< OutputImageType > WriterType;

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

  reader->SetFileName( argv[1] );
  writer->SetFileName( argv[2] );

  typedef itk::VectorIndexSelectionCastImageFilter< 
                                     InputImageType, 
                                     OutputImageType> FilterType;

  FilterType::Pointer filter = FilterType::New();

  filter->SetInput( reader->GetOutput() );
  writer->SetInput( filter->GetOutput() );

  const unsigned int index = atoi( argv[3] );

  filter->SetIndex( index );

  try
    {
    writer->Update();
    }
  catch (itk::ExceptionObject& e)
    {
    std::cerr << "Exception detected: "  << e;
    return -1;
    }
  

  std::cout << "Test the exception if the index is too large" << std::endl;

  InputImageType::ConstPointer inputImage = reader->GetOutput();

  const unsigned int maximumIndex = 
    inputImage->GetNumberOfComponentsPerPixel();

  filter->SetIndex( maximumIndex ); // this index is an invalid value;
 
  bool exceptionCaught = false;

  try
    {
    filter->Update();
    }
  catch ( itk::ExceptionObject& e )
    {
    std::cerr << "Exception caught as expected: "  << e;
    exceptionCaught = true;
    }
  
  if( !exceptionCaught )
    {
    std::cerr << "Failed to catch exception "
              << "when index is too large !!" << std::endl;
    return EXIT_FAILURE;
    }
      
   
  std::cout << "Test PASSED ! " << std::endl;
  return EXIT_SUCCESS;

}

⌨️ 快捷键说明

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