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
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: itkRGBToVectorImageAdaptorTest.cxx
Language: C++
Date: $Date$
Version: $Revision$
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.
=========================================================================*/
/**
*
* This program tests the RGBToVectorImageAdaptor.
*
* This class allows to take an image of pixel type RGBPixel,
* and use it as if it was an image of pixel type itk::Vector<>.
*
*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include "itkRGBToVectorImageAdaptor.h"
#include "itkImageRegionIteratorWithIndex.h"
//-------------------------
//
// Main code
//
//-------------------------
int itkRGBToVectorImageAdaptorTest(int, char* [] ) {
//-------------------------------------
// Typedefs for convenience
//-------------------------------------
typedef float ComponentType;
typedef itk::RGBPixel< ComponentType > RGBPixelType;
const unsigned int ImageDimension = 2;
typedef itk::Image< RGBPixelType, ImageDimension > ImageType;
typedef itk::RGBToVectorImageAdaptor< ImageType > ImageAdaptorType;
typedef itk::ImageRegionIteratorWithIndex< ImageType > IteratorType;
typedef itk::ImageRegionIteratorWithIndex< ImageAdaptorType > RedIteratorType;
ImageType::SizeType size;
size[0] = 2;
size[1] = 2;
ImageType::IndexType index;
index[0] = 0;
index[1] = 0;
ImageType::RegionType region;
region.SetIndex( index );
region.SetSize( size );
ImageType::Pointer image = ImageType::New();
image->SetLargestPossibleRegion( region );
image->SetBufferedRegion( region );
image->SetRequestedRegion( region );
image->Allocate();
IteratorType it1( image, image->GetRequestedRegion() );
// Value to initialize the pixels
ImageType::PixelType color;
color.SetRed( 0.7 );
color.SetGreen( 0.8 );
color.SetBlue( 0.5 );
// Initializing all the pixel in the image
it1.GoToBegin();
while( !it1.IsAtEnd() )
{
it1.Set(color);
++it1;
}
// Reading the values to verify the image content
std::cout << "--- Before --- " << std::endl;
it1.GoToBegin();
while( !it1.IsAtEnd() )
{
const ImageType::PixelType c( it1.Get() );
std::cout << c.GetRed() << " ";
std::cout << c.GetGreen() << " ";
std::cout << c.GetBlue() << std::endl;
++it1;
}
ImageAdaptorType::Pointer adaptor = ImageAdaptorType::New();
adaptor->SetImage( image );
RedIteratorType it2( adaptor, adaptor->GetRequestedRegion() );
// Set the values of the image, using the adaptor
typedef ImageAdaptorType::AccessorType::ExternalType PixelVectorType;
PixelVectorType vector;
vector[0] = 13;
vector[1] = 17;
vector[2] = 19;
it2.GoToBegin();
while( !it2.IsAtEnd() )
{
it2.Set( vector );
++it2;
}
std::cout << "--- After --- " << std::endl;
it1.GoToBegin();
while( !it1.IsAtEnd() )
{
const ImageType::PixelType c( it1.Get() );
std::cout << c.GetRed() << " ";
std::cout << c.GetGreen() << " ";
std::cout << c.GetBlue() << std::endl;
++it1;
}
return EXIT_SUCCESS;
}
|