/usr/include/ITK-4.9/itkImageSeriesWriter.hxx is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 | /*=========================================================================
*
* Copyright Insight Software Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0.txt
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*=========================================================================*/
#ifndef itkImageSeriesWriter_hxx
#define itkImageSeriesWriter_hxx
#include "itkImageSeriesWriter.h"
#include "itkDataObject.h"
#include "itkImageIOFactory.h"
#include "itkIOCommon.h"
#include "itkProgressReporter.h"
#include "itkImageAlgorithm.h"
#include "itkMetaDataObject.h"
#include "itkArray.h"
#include "vnl/algo/vnl_determinant.h"
#include <cstdio>
#if defined(_MSC_VER)
#define snprintf _snprintf
#endif // _MSC_VER
namespace itk
{
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
ImageSeriesWriter< TInputImage, TOutputImage >
::ImageSeriesWriter():
m_ImageIO(ITK_NULLPTR), m_UserSpecifiedImageIO(false),
m_SeriesFormat("%d"),
m_StartIndex(1), m_IncrementIndex(1), m_MetaDataDictionaryArray(ITK_NULLPTR)
{
m_UseCompression = false;
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
ImageSeriesWriter< TInputImage, TOutputImage >
::~ImageSeriesWriter()
{}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
void
ImageSeriesWriter< TInputImage, TOutputImage >
::SetInput(const InputImageType *input)
{
// ProcessObject is not const_correct so this cast is required here.
this->ProcessObject::SetNthInput( 0,
const_cast< TInputImage * >( input ) );
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
const typename ImageSeriesWriter< TInputImage, TOutputImage >::InputImageType *
ImageSeriesWriter< TInputImage, TOutputImage >
::GetInput(void)
{
return itkDynamicCastInDebugMode< TInputImage * >( this->GetPrimaryInput() );
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
const typename ImageSeriesWriter< TInputImage, TOutputImage >::InputImageType *
ImageSeriesWriter< TInputImage, TOutputImage >
::GetInput(unsigned int idx)
{
return itkDynamicCastInDebugMode< TInputImage * >( this->ProcessObject::GetInput(idx) );
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
void
ImageSeriesWriter< TInputImage, TOutputImage >
::Write(void)
{
const InputImageType *inputImage = this->GetInput();
itkDebugMacro(<< "Writing an image file");
// Make sure input is available
if ( inputImage == ITK_NULLPTR )
{
itkExceptionMacro(<< "No input to writer!");
}
// Make sure the data is up-to-date.
// NOTE: this const_cast<> is due to the lack of const-correctness
// of the ProcessObject.
InputImageType *nonConstImage = const_cast< InputImageType * >( inputImage );
nonConstImage->Update();
// Notify start event observers
this->InvokeEvent( StartEvent() );
// Actually do something
this->GenerateData();
// Notify end event observers
this->InvokeEvent( EndEvent() );
// Release upstream data if requested
if ( inputImage->ShouldIReleaseData() )
{
nonConstImage->ReleaseData();
}
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
void
ImageSeriesWriter< TInputImage, TOutputImage >
::GenerateNumericFileNamesAndWrite(void)
{
itkWarningMacro("This functionality has been DEPRECATED. Use NumericSeriesFileName for generating the filenames");
this->GenerateNumericFileNames();
this->WriteFiles();
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
void
ImageSeriesWriter< TInputImage, TOutputImage >
::GenerateNumericFileNames(void)
{
const InputImageType *inputImage = this->GetInput();
if ( !inputImage )
{
itkExceptionMacro(<< "Input image is ITK_NULLPTR");
}
m_FileNames.clear();
// We need two regions. One for the input, one for the output.
ImageRegion< TInputImage::ImageDimension > inRegion = inputImage->GetRequestedRegion();
SizeValueType fileNumber = this->m_StartIndex;
char fileName[IOCommon::ITK_MAXPATHLEN + 1];
// Compute the number of files to be generated
unsigned int numberOfFiles = 1;
for ( unsigned int n = TOutputImage::ImageDimension; n < TInputImage::ImageDimension; n++ )
{
numberOfFiles *= inRegion.GetSize(n);
}
for ( unsigned int slice = 0; slice < numberOfFiles; slice++ )
{
snprintf (fileName, IOCommon::ITK_MAXPATHLEN + 1, m_SeriesFormat.c_str(), fileNumber);
m_FileNames.push_back(fileName);
fileNumber += this->m_IncrementIndex;
}
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
void
ImageSeriesWriter< TInputImage, TOutputImage >
::GenerateData(void)
{
itkDebugMacro(<< "Writing a series of files");
if ( m_FileNames.empty() )
{
// this method will be deprecated. It is here only to maintain the old API
this->GenerateNumericFileNamesAndWrite();
return;
}
this->WriteFiles();
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
void
ImageSeriesWriter< TInputImage, TOutputImage >
::WriteFiles()
{
const InputImageType *inputImage = this->GetInput();
if ( !inputImage )
{
itkExceptionMacro(<< "Input image is ITK_NULLPTR");
}
// We need two regions. One for the input, one for the output.
ImageRegion< TInputImage::ImageDimension > inRegion = inputImage->GetRequestedRegion();
ImageRegion< TOutputImage::ImageDimension > outRegion;
// The size of the output will match the input sizes, up to the
// dimension of the input.
for ( unsigned int i = 0; i < TOutputImage::ImageDimension; i++ )
{
outRegion.SetSize(i, inputImage->GetRequestedRegion().GetSize()[i]);
}
// Allocate an image for output and create an iterator for it
typename OutputImageType::Pointer outputImage = OutputImageType::New();
outputImage->SetRegions(outRegion);
outputImage->SetNumberOfComponentsPerPixel(inputImage->GetNumberOfComponentsPerPixel());
outputImage->Allocate();
// Set the origin and spacing of the output
double spacing[TOutputImage::ImageDimension];
double origin[TOutputImage::ImageDimension];
typename TOutputImage::DirectionType direction;
for ( unsigned int i = 0; i < TOutputImage::ImageDimension; i++ )
{
origin[i] = inputImage->GetOrigin()[i];
spacing[i] = inputImage->GetSpacing()[i];
outRegion.SetSize(i, inputImage->GetRequestedRegion().GetSize()[i]);
for ( unsigned int j = 0; j < TOutputImage::ImageDimension; j++ )
{
direction[j][i] = inputImage->GetDirection()[j][i];
}
}
//
// Address the fact that when taking a 2x2 sub-matrix from
// the direction matrix we may obtain a singular matrix.
// A 2x2 orientation can't represent a 3x3 orientation and
// therefore, replacing the orientation with an identity
// is as arbitrary as any other choice.
//
if ( vnl_determinant( direction.GetVnlMatrix() ) == 0.0 )
{
direction.SetIdentity();
}
outputImage->SetOrigin(origin);
outputImage->SetSpacing(spacing);
outputImage->SetDirection(direction);
Index< TInputImage::ImageDimension > inIndex;
Size< TInputImage::ImageDimension > inSize;
SizeValueType pixelsPerFile = outputImage->GetRequestedRegion().GetNumberOfPixels();
inSize.Fill(1);
for ( unsigned int ns = 0; ns < TOutputImage::ImageDimension; ns++ )
{
inSize[ns] = outRegion.GetSize()[ns];
}
unsigned int expectedNumberOfFiles = 1;
for ( unsigned int n = TOutputImage::ImageDimension; n < TInputImage::ImageDimension; n++ )
{
expectedNumberOfFiles *= inRegion.GetSize(n);
}
if ( m_FileNames.size() != expectedNumberOfFiles )
{
itkExceptionMacro(
<< "The number of filenames passed is " << m_FileNames.size() << " but " << expectedNumberOfFiles
<< " were expected ");
return;
}
itkDebugMacro( << "Number of files to write = " << m_FileNames.size() );
ProgressReporter progress(this, 0,
expectedNumberOfFiles,
expectedNumberOfFiles);
// For each "slice" in the input, copy the region to the output,
// build a filename and write the file.
typename InputImageType::OffsetValueType offset = 0;
for ( unsigned int slice = 0; slice < m_FileNames.size(); slice++ )
{
// Select a "slice" of the image.
inIndex = inputImage->ComputeIndex(offset);
inRegion.SetIndex(inIndex);
inRegion.SetSize(inSize);
// Copy the selected "slice" into the output image.
ImageAlgorithm::Copy(inputImage, outputImage.GetPointer(), inRegion, outRegion);
typename WriterType::Pointer writer = WriterType::New();
writer->UseInputMetaDataDictionaryOff(); // use the dictionary from the
// ImageIO class
writer->SetInput(outputImage);
if ( m_ImageIO )
{
writer->SetImageIO(m_ImageIO);
}
if ( m_MetaDataDictionaryArray )
{
if ( m_ImageIO )
{
if ( slice > m_MetaDataDictionaryArray->size() - 1 )
{
itkExceptionMacro (
"The slice number: " << slice + 1 << " exceeds the size of the MetaDataDictionaryArray "
<< m_MetaDataDictionaryArray->size() << ".");
}
DictionaryRawPointer dictionary = ( *m_MetaDataDictionaryArray )[slice];
m_ImageIO->SetMetaDataDictionary( ( *dictionary ) );
}
else
{
itkExceptionMacro(<< "Attempted to use a MetaDataDictionaryArray without specifying an ImageIO!");
}
}
else
{
if ( m_ImageIO )
{
DictionaryType & dictionary = m_ImageIO->GetMetaDataDictionary();
typename InputImageType::SpacingType spacing2 = inputImage->GetSpacing();
// origin of the output slice in the
// N-Dimensional space of the input image.
typename InputImageType::PointType origin2;
inputImage->TransformIndexToPhysicalPoint(inIndex, origin2);
const unsigned int inputImageDimension = TInputImage::ImageDimension;
typedef Array< double > DoubleArrayType;
DoubleArrayType originArray(inputImageDimension);
DoubleArrayType spacingArray(inputImageDimension);
for ( unsigned int d = 0; d < inputImageDimension; d++ )
{
originArray[d] = origin2[d];
spacingArray[d] = spacing2[d];
}
EncapsulateMetaData< DoubleArrayType >(dictionary, ITK_Origin, originArray);
EncapsulateMetaData< DoubleArrayType >(dictionary, ITK_Spacing, spacingArray);
EncapsulateMetaData< unsigned int >(dictionary, ITK_NumberOfDimensions, inputImageDimension);
typename InputImageType::DirectionType direction2 = inputImage->GetDirection();
typedef Matrix< double, inputImageDimension, inputImageDimension> DoubleMatrixType;
DoubleMatrixType directionMatrix;
for( unsigned int i = 0; i < inputImageDimension; i++ )
{
for( unsigned int j = 0; j < inputImageDimension; j++ )
{
directionMatrix[j][i] = direction2[i][j];
}
}
EncapsulateMetaData< DoubleMatrixType >( dictionary, ITK_ZDirection, directionMatrix );
}
}
writer->SetFileName( m_FileNames[slice].c_str() );
writer->SetUseCompression(m_UseCompression);
writer->Update();
progress.CompletedPixel();
offset += pixelsPerFile;
}
}
//---------------------------------------------------------
template< typename TInputImage, typename TOutputImage >
void
ImageSeriesWriter< TInputImage, TOutputImage >
::PrintSelf(std::ostream & os, Indent indent) const
{
Superclass::PrintSelf(os, indent);
os << indent << "Image IO: ";
if ( m_ImageIO.IsNull() )
{
os << "(none)\n";
}
else
{
os << m_ImageIO << "\n";
}
os << indent << "StartIndex: " << m_StartIndex << std::endl;
os << indent << "IncrementIndex: " << m_IncrementIndex << std::endl;
os << indent << "SeriesFormat: " << m_SeriesFormat << std::endl;
os << indent << "MetaDataDictionaryArray: " << m_MetaDataDictionaryArray << std::endl;
if ( m_UseCompression )
{
os << indent << "Compression: On\n";
}
else
{
os << indent << "Compression: Off\n";
}
}
} // end namespace itk
#endif
|