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 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkJoinSeriesImageFilterTest.cxx,v $
Language: C++
Date: $Date: 2007-08-10 14:34:02 $
Version: $Revision: 1.7 $
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 "itkImage.h"
#include "itkJoinSeriesImageFilter.h"
#include "itkImageRegionIterator.h"
#include "itkStreamingImageFilter.h"
#include "itkCommand.h"
#include "itkFileOutputWindow.h"
#include <iostream>
#include <vector>
int itkJoinSeriesImageFilterPrintTest(int, char* [])
{
typedef itk::Image<float,2> InputType;
typedef itk::Image<float,2> OutputType;
// NOTE: A compile error should be here (by extending itk::Concept?),
// because InputImageDimension must be less than OutputImageDimension.
itk::JoinSeriesImageFilter<InputType,OutputType>::Pointer JoinSeriesImageFilterObj =
itk::JoinSeriesImageFilter<InputType,OutputType>::New();
std::cout << "-------------JoinSeriesImageFilter" << JoinSeriesImageFilterObj;
return EXIT_SUCCESS;
}
class ShowProgressObject
{
public:
ShowProgressObject(itk::ProcessObject* o)
{m_Process = o;}
void ShowProgress()
{std::cout << "Progress " << m_Process->GetProgress() << std::endl;}
itk::ProcessObject::Pointer m_Process;
};
int itkJoinSeriesImageFilterTest(int, char* [] )
{
// to write informations to "itkMessageLog.txt" when DebugOn()
// itk::OutputWindow::SetInstance( itk::FileOutputWindow::New() );
const unsigned int streamDivisions = 2;
typedef unsigned char PixelType;
typedef itk::Image< PixelType, 2 > InputImageType;
// typedef itk::Image< PixelType, 3 > OutputImageType;
typedef itk::Image< PixelType, 4 > OutputImageType;
// the expected result
OutputImageType::IndexType expectedIndex = {{1, 2, 0, 0}};
OutputImageType::SizeType expectedSize = {{8, 5, 4, 1}};
OutputImageType::RegionType expectedRegion;
expectedRegion.SetIndex( expectedIndex );
expectedRegion.SetSize( expectedSize );
OutputImageType::SpacingType expectedSpacing;
expectedSpacing[0] = 1.1;
expectedSpacing[1] = 1.2;
expectedSpacing[2] = 1.3;
expectedSpacing[3] = 1.0;
OutputImageType::PointType expectedOrigin;
expectedOrigin[0] = 0.1;
expectedOrigin[1] = 0.2;
expectedOrigin[2] = 0.3;
expectedOrigin[3] = 0.0;
// make the input images
int numInputs = 4;
InputImageType::IndexType index = {{1, 2}};
InputImageType::SizeType size = {{8, 5}};
InputImageType::RegionType region;
region.SetIndex( index );
region.SetSize( size );
const double spacingValue = 1.3;
InputImageType::SpacingType spacing;
spacing[0] = 1.1;
spacing[1] = 1.2;
const double originValue = 0.3;
InputImageType::PointType origin;
origin[0] = 0.1;
origin[1] = 0.2;
std::vector<InputImageType::Pointer> inputs;
PixelType counter1 = 0;
for ( int i = 0; i < numInputs; i++ )
{
inputs.push_back( InputImageType::New() );
inputs[i]->SetLargestPossibleRegion( region );
inputs[i]->SetBufferedRegion( region );
inputs[i]->Allocate();
itk::ImageRegionIterator<InputImageType>
inputIter( inputs[i], inputs[i]->GetBufferedRegion() );
while ( !inputIter.IsAtEnd() )
{
inputIter.Set( counter1 );
++counter1;
++inputIter;
}
inputs[i]->SetSpacing( spacing );
inputs[i]->SetOrigin( origin );
// inputs[i]->DebugOn();
}
// create the filter
typedef itk::JoinSeriesImageFilter< InputImageType, OutputImageType >
JoinSeriesImageType;
JoinSeriesImageType::Pointer joinSeriesImage = JoinSeriesImageType::New();
// check the default values
if ( joinSeriesImage->GetSpacing() != 1.0 )
{
std::cout << "Default spacing is not 1.0" << std::endl;
return EXIT_FAILURE;
}
if ( joinSeriesImage->GetOrigin() != 0.0 )
{
std::cout << "Default origin is not 0.0" << std::endl;
return EXIT_FAILURE;
}
// setup the filter
joinSeriesImage->SetSpacing( spacingValue );
joinSeriesImage->SetOrigin( originValue );
for ( int i = 0; i < numInputs; i++ )
{
joinSeriesImage->SetInput( i, inputs[i] );
}
// to test ProgressReporter
ShowProgressObject progressWatch( joinSeriesImage );
typedef itk::SimpleMemberCommand< ShowProgressObject > CommandType;
CommandType::Pointer command = CommandType::New();
command->SetCallbackFunction( &progressWatch,
&ShowProgressObject::ShowProgress );
joinSeriesImage->AddObserver( itk::ProgressEvent(), command );
// to test streaming
typedef itk::StreamingImageFilter< OutputImageType, OutputImageType >
StreamingImageType;
StreamingImageType::Pointer streamingImage = StreamingImageType::New();
streamingImage->SetInput( joinSeriesImage->GetOutput() );
streamingImage->SetNumberOfStreamDivisions( streamDivisions );
// run
try
{
streamingImage->Update();
}
catch( itk::ExceptionObject & err )
{
std::cout << err << std::endl;
//for InvalidRequestedRegionError
itk::DataObjectError * errp = dynamic_cast<itk::DataObjectError *>( &err );
if ( errp )
{
errp->GetDataObject()->Print( std::cout );
}
return EXIT_FAILURE;
}
OutputImageType::Pointer output = streamingImage->GetOutput();
// check the informations
if ( output->GetLargestPossibleRegion() != expectedRegion )
{
std::cout << "LargestPossibleRegion mismatch" << std::endl;
return EXIT_FAILURE;
}
if ( output->GetSpacing() != expectedSpacing )
{
std::cout << "Spacing mismatch" << std::endl;
return EXIT_FAILURE;
}
if ( output->GetOrigin() != expectedOrigin )
{
std::cout << "Origin mismatch" << std::endl;
return EXIT_FAILURE;
}
// check the contents
bool passed = true;
PixelType counter2 = 0;
itk::ImageRegionIterator<OutputImageType>
outputIter( output, output->GetBufferedRegion() );
while ( !outputIter.IsAtEnd() )
{
if ( outputIter.Get() != counter2 )
{
passed = false;
std::cout << "Mismatch at index: " << outputIter.GetIndex() << std::endl;
}
++counter2;
++outputIter;
}
if ( !passed || counter1 != counter2 )
{
std::cout << "Test failed." << std::endl;
return EXIT_FAILURE;
}
// An exception is raised when an input is missing.
passed = false;
// set the 2nd input null
joinSeriesImage->SetInput( 1, 0 );
try
{
joinSeriesImage->Update();
}
catch( itk::InvalidRequestedRegionError & err )
{
std::cout << err << std::endl;
passed = true;
}
catch( itk::ExceptionObject & err )
{
std::cout << err << std::endl;
return EXIT_FAILURE;
}
if ( !passed )
{
std::cout << "Expected exception is missing" << std::endl;
return EXIT_FAILURE;
}
std::cout << "Test passed." << std::endl;
return EXIT_SUCCESS;
}
|