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 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkPermuteAxesImageFilter.txx,v $
Language: C++
Date: $Date: 2007-11-20 02:24:53 $
Version: $Revision: 1.15 $
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.
=========================================================================*/
#ifndef _itkPermuteAxesImageFilter_txx
#define _itkPermuteAxesImageFilter_txx
#include "itkPermuteAxesImageFilter.h"
#include "itkImageRegionIteratorWithIndex.h"
#include "itkExceptionObject.h"
#include "itkProgressReporter.h"
namespace itk
{
/**
* Constructor
*/
template <class TImage>
PermuteAxesImageFilter<TImage>
::PermuteAxesImageFilter()
{
for ( unsigned int j = 0; j < ImageDimension; j++ )
{
m_Order[j] = j;
m_InverseOrder[m_Order[j]] = j;
}
}
/**
* PrintSelf
*/
template <class TImage>
void
PermuteAxesImageFilter<TImage>
::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os,indent);
unsigned int j;
os << indent << "Order: [";
for( j = 0; j < ImageDimension - 1; j++ )
{
os << m_Order[j] << ", ";
}
os << m_Order[j] << "]" << std::endl;
os << indent << "InverseOrder: [";
for( j = 0; j < ImageDimension - 1; j++ )
{
os << m_InverseOrder[j] << ", ";
}
os << m_InverseOrder[j] << "]" << std::endl;
}
/**
* Set the permutation order
*/
template <class TImage>
void
PermuteAxesImageFilter<TImage>
::SetOrder( const PermuteOrderArrayType& order )
{
unsigned int j;
// check if it the same as current
if ( m_Order == order ) return;
// check that input is a rearrangement of the
// numbers from 0 to ImageDimension - 1
FixedArray<bool,ImageDimension> used;
used.Fill( false );
for ( j = 0; j < ImageDimension; j++ )
{
if ( order[j] > ImageDimension - 1 )
{
ExceptionObject err(__FILE__, __LINE__);
err.SetLocation( ITK_LOCATION );
err.SetDescription( "Order indices is out of range" );
throw err;
}
else if ( used[order[j]] )
{
ExceptionObject err(__FILE__, __LINE__);
err.SetLocation( ITK_LOCATION );
err.SetDescription( "Order indices must not repeat" );
throw err;
}
used[order[j]] = true;
}
// copy to member variable
this->Modified();
m_Order = order;
for ( j = 0; j < ImageDimension; j++ )
{
m_InverseOrder[m_Order[j]] = j;
}
}
/**
* The output image meta information is obtained by permuting
* the input image meta information.
*/
template <class TImage>
void
PermuteAxesImageFilter<TImage>
::GenerateOutputInformation()
{
// call the superclass's implementation of this method
Superclass::GenerateOutputInformation();
// get pointers to the input and output
typename Superclass::InputImageConstPointer inputPtr = this->GetInput();
typename Superclass::OutputImagePointer outputPtr = this->GetOutput();
if( !inputPtr || !outputPtr )
{
return;
}
const typename TImage::SpacingType& inputSpacing = inputPtr->GetSpacing();
const typename TImage::PointType& inputOrigin = inputPtr->GetOrigin();
const typename TImage::DirectionType& inputDirection = inputPtr->GetDirection();
const typename TImage::SizeType& inputSize =
inputPtr->GetLargestPossibleRegion().GetSize();
const typename TImage::IndexType& inputStartIndex =
inputPtr->GetLargestPossibleRegion().GetIndex();
typename TImage::SpacingType outputSpacing;
typename TImage::PointType outputOrigin;
typename TImage::DirectionType outputDirection;
typename TImage::SizeType outputSize;
typename TImage::IndexType outputStartIndex;
unsigned int i, j;
for ( j = 0; j < ImageDimension; j++ )
{
// origin does not change by a Permute. But spacing, directions,
// size and start index do.
outputOrigin[j] = inputOrigin[j];
outputSpacing[j] = inputSpacing[m_Order[j]];
outputSize[j] = inputSize[m_Order[j]];
outputStartIndex[j] = inputStartIndex[m_Order[j]];
for ( i = 0; i < ImageDimension; i++ )
{
outputDirection[i][j] = inputDirection[i][m_Order[j]];
}
}
outputPtr->SetSpacing( outputSpacing );
outputPtr->SetOrigin( outputOrigin );
outputPtr->SetDirection( outputDirection );
typename TImage::RegionType outputRegion;
outputRegion.SetSize( outputSize );
outputRegion.SetIndex( outputStartIndex );
outputPtr->SetLargestPossibleRegion( outputRegion );
}
/**
* The required input requested region is obtained by permuting
* the index and size of the output requested region
*/
template <class TImage>
void
PermuteAxesImageFilter<TImage>
::GenerateInputRequestedRegion()
{
// call the superclass's implementation of this method
Superclass::GenerateInputRequestedRegion();
// get pointers to the input and output
InputImagePointer inputPtr =
const_cast< TImage * >( this->GetInput() );
OutputImagePointer outputPtr = this->GetOutput();
if( !inputPtr || !outputPtr )
{
return;
}
const typename TImage::SizeType& outputSize =
outputPtr->GetRequestedRegion().GetSize();
const typename TImage::IndexType& outputIndex =
outputPtr->GetRequestedRegion().GetIndex();
typename TImage::SizeType inputSize;
typename TImage::IndexType inputIndex;
unsigned int j;
for ( j = 0; j < ImageDimension; j++ )
{
inputSize[j] = outputSize[m_InverseOrder[j]];
inputIndex[j] = outputIndex[m_InverseOrder[j]];
}
typename TImage::RegionType inputRegion;
inputRegion.SetSize( inputSize );
inputRegion.SetIndex( inputIndex );
inputPtr->SetRequestedRegion( inputRegion );
}
/**
*
*/
template <class TImage>
void
PermuteAxesImageFilter<TImage>
::ThreadedGenerateData(const OutputImageRegionType& outputRegionForThread,
int threadId)
{
unsigned long i;
unsigned int j;
// Get the input and output pointers
typename Superclass::InputImageConstPointer inputPtr = this->GetInput();
typename Superclass::OutputImagePointer outputPtr = this->GetOutput();
// Setup output region iterator
typedef ImageRegionIteratorWithIndex<TImage> OutputIterator;
OutputIterator outIt(outputPtr, outputRegionForThread);
typename TImage::IndexType outputIndex;
typename TImage::IndexType inputIndex;
// support progress methods/callbacks
ProgressReporter progress(this, threadId, outputRegionForThread.GetNumberOfPixels());
// walk the output region, and sample the input image
for ( i = 0; !outIt.IsAtEnd(); ++outIt, i++ )
{
// determine the index of the output pixel
outputIndex = outIt.GetIndex();
// determine the input pixel location associated with this output pixel
for ( j = 0; j < ImageDimension; j++ )
{
inputIndex[j] = outputIndex[ m_InverseOrder[j] ];
}
// copy the input pixel to the output
outIt.Set( inputPtr->GetPixel(inputIndex) );
progress.CompletedPixel();
}
}
} // namespace itk
#endif
|