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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkBoxSpatialObjectTest.cxx,v $
Language: C++
Date: $Date: 2009-04-07 14:34:48 $
Version: $Revision: 1.6 $
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
/**
* This is a test file for the itkBoxSpatialObject class.
*/
#include "itkImage.h"
#include "itkImageFileWriter.h"
#include "itkGroupSpatialObject.h"
#include "itkSpatialObjectToImageFilter.h"
#include "itkBoxSpatialObject.h"
int itkBoxSpatialObjectTest( int argc, char *argv[] )
{
if (argc < 2)
{
std::cerr << "Missing Parameters: Usage " << argv[0] << "OutputImageFile"
<< std::endl;
}
const unsigned int Dimension = 2;
typedef itk::GroupSpatialObject< Dimension > SceneType;
typedef itk::BoxSpatialObject< Dimension > BoxType;
typedef itk::Image< unsigned char, Dimension > OutputImageType;
typedef itk::ImageFileWriter< OutputImageType > WriterType;
typedef itk::SpatialObjectToImageFilter< SceneType, OutputImageType >
SpatialObjectToImageFilterType;
SceneType::Pointer scene = SceneType::New();
BoxType::Pointer box1 = BoxType::New();
box1->Print(std::cout);
BoxType::Pointer box2 = BoxType::New();
box1->SetId(1);
// Test the SetProperty()
typedef BoxType::PropertyType PropertyType;
PropertyType::Pointer prop = PropertyType::New();
box1->SetProperty(prop);
scene->AddSpatialObject(box1);
scene->AddSpatialObject(box2);
BoxType::SizeType boxsize1;
BoxType::SizeType boxsize2;
boxsize1[0] = 30;
boxsize1[1] = 30;
box1->SetSize( boxsize1 );
boxsize2[0] = 30;
boxsize2[1] = 30;
box2->SetSize( boxsize2 );
BoxType::TransformType::OffsetType offset1;
BoxType::TransformType::OffsetType offset2;
offset1[0] = 29.0;
offset1[1] = 29.0;
box1->GetObjectToParentTransform()->SetOffset( offset1 );
box1->ComputeObjectToWorldTransform();
offset2[0] = 50.0;
offset2[1] = 50.0;
box2->GetObjectToParentTransform()->SetOffset( offset2 );
box2->ComputeObjectToWorldTransform();
box1->ComputeBoundingBox();
box2->ComputeBoundingBox();
std::cout <<"Test ComputeBoundingBox: " << std::endl;
std::cout << box1->GetBoundingBox()->GetBounds() << std::endl;
std::cout << box2->GetBoundingBox()->GetBounds() << std::endl;
BoxType::BoundingBoxType * boundingBox = box1->GetBoundingBox();
if( (boundingBox->GetBounds()[0]!= 29)
|| (boundingBox->GetBounds()[1]!= 59)
|| (boundingBox->GetBounds()[2]!= 29)
|| (boundingBox->GetBounds()[3]!= 59) )
{
std::cout << "[FAILED] Test returned" << std::endl;
std::cout << box1->GetBoundingBox()->GetBounds() << std::endl;
std::cout << "Instead of [29 59 29 59]" << std::endl;
return EXIT_FAILURE;
}
std::cout << "[PASSED]" << std::endl;
// Point consistency
std::cout << "Test Is Inside: ";
itk::Point<double,2> in;
in[0]=30.0;in[1]=30.0;
itk::Point<double,2> out;
out[0]=0;out[1]=4;
if(!box1->IsInside(in))
{
std::cout<<"[FAILED]"<<std::endl;
return EXIT_FAILURE;
}
if(box1->IsInside(out))
{
std::cout<<"[FAILED]"<<std::endl;
return EXIT_FAILURE;
}
std::cout << "[PASSED]" << std::endl;
std::cout << "Test ObjectToWorldTransform " << std::endl;
BoxType::TransformType::OffsetType translation;
translation[0] = 5.0;
translation[1] = 5.0;
box1->GetObjectToParentTransform()->Translate( translation );
box1->GetObjectToParentTransform()->SetOffset( offset1 );
box1->ComputeObjectToWorldTransform();
box2->GetObjectToParentTransform()->Translate( translation );
box2->GetObjectToParentTransform()->SetOffset( offset2 );
box2->ComputeObjectToWorldTransform();
SpatialObjectToImageFilterType::Pointer imageFilter =
SpatialObjectToImageFilterType::New();
imageFilter->SetInput( scene );
OutputImageType::SizeType size;
size[ 0 ] = 100;
size[ 1 ] = 100;
imageFilter->SetSize( size );
SpatialObjectToImageFilterType::PointType origin;
origin[0]=0;
origin[1]=0;
imageFilter->SetOrigin( origin );
imageFilter->SetInsideValue( 255 );
imageFilter->SetOutsideValue( 0 );
imageFilter->Update();
const char * outputFilename = argv[1];
WriterType::Pointer writer = WriterType::New();
writer->SetFileName( outputFilename );
writer->SetInput( imageFilter->GetOutput() );
try
{
writer->Update();
}
catch( itk::ExceptionObject & err )
{
std::cout << "ExceptionObject caught !" << std::endl;
std::cout << err << std::endl;
return -1;
}
box1->Print(std::cout);
return EXIT_SUCCESS;
}
|