1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
/*=========================================================================
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;
}
|