📄 itkflipimagefiltertest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkFlipImageFilterTest.cxx,v $
Language: C++
Date: $Date: 2005-04-18 18:16:36 $
Version: $Revision: 1.10 $
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 "itkFlipImageFilter.h"
#include "itkImage.h"
#include "itkTextOutput.h"
#include "itkCommand.h"
#include "itkImageRegionIteratorWithIndex.h"
#include "itkFilterWatcher.h"
int itkFlipImageFilterTest(int, char* [] )
{
itk::OutputWindow::SetInstance(itk::TextOutput::New());
typedef unsigned char PixelType;
enum { ImageDimension = 3 };
typedef itk::Image<PixelType,ImageDimension> ImageType;
typedef itk::FlipImageFilter<ImageType> FlipperType;
// define a small input test
ImageType::IndexType index = {{ 10, 20, 30 }};
ImageType::SizeType size = {{5,4,3}};
ImageType::RegionType region;
region.SetSize( size );
region.SetIndex( index );
ImageType::SpacingType spacing;
spacing[0] = 1.1;
spacing[1] = 1.2;
spacing[2] = 1.3;
ImageType::PointType origin;
origin[0] = 0.5;
origin[1] = 0.4;
origin[2] = 0.3;
ImageType::Pointer inputImage = ImageType::New();
inputImage->SetLargestPossibleRegion( region );
inputImage->SetBufferedRegion( region );
inputImage->Allocate();
inputImage->SetSpacing( spacing );
inputImage->SetOrigin( origin );
typedef itk::ImageRegionIteratorWithIndex<ImageType> Iterator;
Iterator inputIter( inputImage, inputImage->GetBufferedRegion() );
PixelType counter = 0;
while ( !inputIter.IsAtEnd() )
{
inputIter.Set( counter );
++counter;
++inputIter;
}
// permute the image
FlipperType::Pointer flipper = FlipperType::New();
FilterWatcher watcher(flipper);
bool bArray[ImageDimension] = { true, false, true };
FlipperType::FlipAxesArrayType flipAxes( bArray );
flipper->SetFlipAxes( flipAxes );
std::cout << "FlipAxes: " << flipper->GetFlipAxes() << std::endl;
flipper->SetInput( inputImage );
flipper->Update();
flipper->GetOutput()->Print( std::cout );
flipper->Print( std::cout );
// check the output
ImageType::Pointer outputImage = flipper->GetOutput();
const ImageType::SpacingType& inputSpacing = inputImage->GetSpacing();
const ImageType::PointType& inputOrigin = inputImage->GetOrigin();
const ImageType::SpacingType& outputSpacing = outputImage->GetSpacing();
const ImageType::PointType& outputOrigin = outputImage->GetOrigin();
inputImage->Print( std::cout );
outputImage->Print( std::cout );
typedef ImageType::IndexType IndexType;
typedef IndexType::IndexValueType IndexValueType;
inputIter.GoToBegin();
bool passed = true;
while ( !inputIter.IsAtEnd() )
{
IndexType inputIndex = inputIter.GetIndex();
IndexType outputIndex;
for ( int j = 0; j < ImageDimension; j++ )
{
if ( flipAxes[j] )
{
double temp = - 1 * ( static_cast<double>( inputIndex[j] ) *
inputSpacing[j] + inputOrigin[j]);
outputIndex[j] = static_cast<IndexValueType>( vnl_math_rnd(( temp - outputOrigin[j] ) /
outputSpacing[j] ) );
}
else
{
outputIndex[j] = inputIndex[j];
}
}
if ( inputIter.Get() != outputImage->GetPixel( outputIndex ) )
{
passed = false;
std::cout << "Mismatch at index: " << inputIndex;
std::cout << " " << outputIndex << std::endl;
}
++inputIter;
}
if ( !passed )
{
std::cout << "Test failed." << std::endl;
return EXIT_FAILURE;
}
std::cout << "Test passed." << std::endl;
return EXIT_SUCCESS;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -