📄 itkpromotedimensionimagetest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkPromoteDimensionImageTest.cxx,v $
Language: C++
Date: $Date: 2007-08-10 14:34:02 $
Version: $Revision: 1.5 $
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 "itkPNGImageIO.h"
#include "itkImageFileReader.h"
#include "itkImageFileWriter.h"
#include "itkCastImageFilter.h"
#include "itkRescaleIntensityImageFilter.h"
int itkPromoteDimensionImageTest(int argc, char* argv[])
{
if( argc < 3)
{
std::cerr << "Usage: " << std::endl;
std::cerr << argv[0] << " inputImage outputImage " << std::endl;
return -1;
}
const char * inputFilename = argv[1];
const char * outputFilename = argv[2];
typedef unsigned char CharPixelType; //IO
typedef double RealPixelType; //Operations
const unsigned int InDimension = 2;
const unsigned int OutDimension = 3;
typedef itk::Image<CharPixelType, InDimension> InCharImageType;
typedef itk::Image<CharPixelType, OutDimension> OutCharImageType;
typedef itk::Image<RealPixelType, InDimension> RealImageType;
typedef itk::ImageFileReader< InCharImageType > ReaderType;
typedef itk::ImageFileWriter< OutCharImageType > WriterType;
typedef itk::CastImageFilter<InCharImageType, RealImageType> CastToRealFilterType;
typedef itk::CastImageFilter<RealImageType, OutCharImageType> CastToCharFilterType;
typedef itk::RescaleIntensityImageFilter<RealImageType, RealImageType> RescaleFilter;
//Setting the IO
ReaderType::Pointer reader = ReaderType::New();
WriterType::Pointer writer = WriterType::New();
CastToRealFilterType::Pointer toReal = CastToRealFilterType::New();
CastToCharFilterType::Pointer toChar = CastToCharFilterType::New();
RescaleFilter::Pointer rescale = RescaleFilter::New();
//Setting the ITK pipeline filter
reader->SetFileName( inputFilename );
writer->SetFileName( outputFilename );
//The output of an edge filter is 0 or 1
rescale->SetOutputMinimum( 0 );
rescale->SetOutputMaximum( 255 );
toReal->SetInput( reader->GetOutput() );
rescale->SetInput( toReal->GetOutput() );
toChar->SetInput( rescale->GetOutput() );
writer->SetInput( toChar->GetOutput() );
try
{
writer->Update();
//toChar->GetOutput()->Print(std::cout);
}
catch( itk::ExceptionObject & err )
{
std::cout << "ExceptionObject caught !" << std::endl;
std::cout << err << std::endl;
return -1;
}
return EXIT_SUCCESS;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -