-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathitkDeformationFieldWriter.hxx
executable file
·390 lines (333 loc) · 11.6 KB
/
itkDeformationFieldWriter.hxx
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
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkDeformationFieldWriter.hxx,v $
Language: C++
Date: $Date: 2008/10/18 00:21:04 $
Version: $Revision: 1.1.1.1 $
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 _itkDeformationFieldWriter_hxx
#define _itkDeformationFieldWriter_hxx
#include "itkDeformationFieldWriter.h"
#include "itkImageFileWriter.h"
#include "itkDataObject.h"
#include "itkObjectFactoryBase.h"
#include "itkImageIOFactory.h"
#include "itkCommand.h"
#include "vnl/vnl_vector.h"
#include "itkVectorImage.h"
#include "itkVectorIndexSelectionCastImageFilter.h"
namespace itk
{
//---------------------------------------------------------
template <class TDeformationField, class TImage>
DeformationFieldWriter<TDeformationField, TImage>
::DeformationFieldWriter():
m_FileName(""),
m_ImageIO(0), m_UserSpecifiedImageIO(false),
m_UserSpecifiedIORegion(false)
{
m_UseCompression = false;
m_UseInputMetaDataDictionary = true;
m_FactorySpecifiedImageIO = false;
m_UseAvantsNamingConvention = false;
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
DeformationFieldWriter<TDeformationField, TImage>
::~DeformationFieldWriter()
{
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
void
DeformationFieldWriter<TDeformationField, TImage>
::SetInput(const DeformationFieldType *input)
{
this->ProcessObject::SetNthInput(0,
const_cast<TDeformationField *>(input ) );
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
const typename DeformationFieldWriter<TDeformationField, TImage>::DeformationFieldType *
DeformationFieldWriter<TDeformationField, TImage>
::GetInput(void)
{
if (this->GetNumberOfInputs() < 1)
{
return 0;
}
return static_cast<TDeformationField*>
(this->ProcessObject::GetInput(0));
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
const typename DeformationFieldWriter<TDeformationField, TImage>::DeformationFieldType *
DeformationFieldWriter<TDeformationField, TImage>
::GetInput(unsigned int idx)
{
return static_cast<TDeformationField*>
(this->ProcessObject::GetInput(idx));
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
void
DeformationFieldWriter<TDeformationField, TImage>
::SetIORegion (const ImageIORegion& region)
{
itkDebugMacro("setting IORegion to " << region );
if ( m_IORegion != region)
{
m_IORegion = region;
this->Modified();
m_UserSpecifiedIORegion = true;
}
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
void
DeformationFieldWriter<TDeformationField, TImage>
::GenerateData(void)
{
itkDebugMacro(<<"Writing file: " << m_ComponentImageFileName);
// Make sure that the image is the right type and no more than
// four components.
typedef typename ImageType::PixelType ScalarType;
if( strcmp( m_Image->GetNameOfClass(), "VectorImage" ) == 0 )
{
typedef typename ImageType::InternalPixelType VectorImageScalarType;
m_ImageIO->SetPixelTypeInfo( typeid(VectorImageScalarType) );
typedef typename ImageType::AccessorFunctorType AccessorFunctorType;
m_ImageIO->SetNumberOfComponents( AccessorFunctorType::GetVectorLength( m_Image ) );
}
else
{
// Set the pixel and component type; the number of components.
m_ImageIO->SetPixelTypeInfo(typeid(ScalarType));
}
// Setup the image IO for writing.
//
m_ImageIO->SetFileName(m_ComponentImageFileName.c_str());
//okay, now extract the data as a raw buffer pointer
const void* dataPtr = (const void*) this->m_Image->GetBufferPointer();
m_ImageIO->Write(dataPtr);
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
void
DeformationFieldWriter<TDeformationField, TImage>
::Write()
{
std::string::size_type Pos = this->m_FileName.rfind( "." );
std::string extension( this->m_FileName, Pos, this->m_FileName.length()-1 );
typedef VectorIndexSelectionCastImageFilter
<DeformationFieldType, ImageType> SelectorType;
typename SelectorType::Pointer selector = SelectorType::New();
selector->SetInput( this->GetInput() );
unsigned int dimension = itk::GetVectorDimension
<typename DeformationFieldType::PixelType>::VectorDimension;
for ( unsigned int i = 0; i < dimension; i++ )
{
selector->SetIndex( i );
selector->Update();
std::string filename( this->m_FileName, 0, Pos );
if ( this->m_UseAvantsNamingConvention )
{
switch ( i )
{
case 0:
filename += std::string( "xvec" );
break;
case 1:
filename += std::string( "yvec" );
break;
case 2:
filename += std::string( "zvec" );
break;
default:
filename += std::string( "you_are_screwed_vec" );
break;
}
}
else
{
itk::OStringStream buf;
buf << i;
filename += ( std::string( "." ) + std::string( buf.str().c_str() ) );
}
filename += extension;
m_ComponentImageFileName = filename;
ImageType *input = selector->GetOutput();
this->m_Image = selector->GetOutput();
itkDebugMacro( <<"Writing an image file" );
// Make sure input is available
if ( input == 0 )
{
itkExceptionMacro(<< "No input to writer!");
}
// Make sure that we can write the file given the name
//
if ( filename == "" )
{
itkExceptionMacro(<<"No filename was specified");
}
if ( m_ImageIO.IsNull() ) //try creating via factory
{
itkDebugMacro(<<"Attempting factory creation of ImageIO for file: "
<< filename);
m_ImageIO = ImageIOFactory::CreateImageIO( filename.c_str(),
ImageIOFactory::WriteMode );
m_FactorySpecifiedImageIO = true;
}
else
{
if( m_FactorySpecifiedImageIO && !m_ImageIO->CanWriteFile( filename.c_str() ) )
{
itkDebugMacro(<<"ImageIO exists but doesn't know how to write file:"
<< m_FileName );
itkDebugMacro(<<"Attempting creation of ImageIO with a factory for file:"
<< m_FileName);
m_ImageIO = ImageIOFactory::CreateImageIO( filename.c_str(),
ImageIOFactory::WriteMode );
m_FactorySpecifiedImageIO = true;
}
}
if ( m_ImageIO.IsNull() )
{
ImageFileWriterException e(__FILE__, __LINE__);
OStringStream msg;
msg << " Could not create IO object for file "
<< filename.c_str() << std::endl;
msg << " Tried to create one of the following:" << std::endl;
std::list<LightObject::Pointer> allobjects =
ObjectFactoryBase::CreateAllInstance("itkImageIOBase");
for(std::list<LightObject::Pointer>::iterator i = allobjects.begin();
i != allobjects.end(); ++i)
{
ImageIOBase* io = dynamic_cast<ImageIOBase*>(i->GetPointer());
msg << " " << io->GetNameOfClass() << std::endl;
}
msg << " You probably failed to set a file suffix, or" << std::endl;
msg << " set the suffix to an unsupported type." << std::endl;
e.SetDescription(msg.str().c_str());
e.SetLocation(ITK_LOCATION);
throw e;
}
// NOTE: this const_cast<> is due to the lack of const-correctness
// of the ProcessObject.
ImageType *nonConstImage = input;
typedef typename TImage::RegionType RegionType;
if ( ! m_UserSpecifiedIORegion )
{
// Make sure the data is up-to-date.
if( nonConstImage->GetSource() )
{
nonConstImage->GetSource()->UpdateLargestPossibleRegion();
}
// Write the whole image
ImageIORegion ioRegion(TImage::ImageDimension);
RegionType region = this->m_Image->GetLargestPossibleRegion();
for(unsigned int i=0; i<TDeformationField::ImageDimension; i++)
{
ioRegion.SetSize(i,region.GetSize(i));
ioRegion.SetIndex(i,region.GetIndex(i));
}
m_IORegion = ioRegion; //used by GenerateData
}
else
{
nonConstImage->Update();
}
// Setup the ImageIO
//
m_ImageIO->SetNumberOfDimensions(TImage::ImageDimension);
RegionType region = this->m_Image->GetLargestPossibleRegion();
const typename TImage::SpacingType& spacing = this->m_Image->GetSpacing();
const typename TImage::PointType& origin = this->m_Image->GetOrigin();
const typename TImage::DirectionType& direction = this->m_Image->GetDirection();
for(unsigned int i=0; i<TDeformationField::ImageDimension; i++)
{
m_ImageIO->SetDimensions(i,region.GetSize(i));
m_ImageIO->SetSpacing(i,spacing[i]);
m_ImageIO->SetOrigin(i,origin[i]);
vnl_vector< double > axisDirection(TDeformationField::ImageDimension);
// Please note: direction cosines are stored as columns of the
// direction matrix
for(unsigned int j=0; j<TImage::ImageDimension; j++)
{
axisDirection[j] = direction[j][i];
}
m_ImageIO->SetDirection( i, axisDirection );
}
m_ImageIO->SetUseCompression(m_UseCompression);
m_ImageIO->SetIORegion(m_IORegion);
if( m_UseInputMetaDataDictionary )
{
m_ImageIO->SetMetaDataDictionary(input->GetMetaDataDictionary());
}
// 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 ( input->ShouldIReleaseData() )
{
nonConstImage->ReleaseData();
}
}
}
//---------------------------------------------------------
template <class TDeformationField, class TImage>
void
DeformationFieldWriter<TDeformationField, TImage>
::PrintSelf(std::ostream& os, Indent indent) const
{
Superclass::PrintSelf(os,indent);
os << indent << "File Name: "
<< (m_FileName.data() ? m_FileName.data() : "(none)") << std::endl;
os << "Number of vector components (i.e. number of images created): " <<
itk::GetVectorDimension<typename DeformationFieldType::PixelType>::VectorDimension
<< std::endl;
os << indent << "Image IO: ";
if ( m_ImageIO.IsNull() )
{
os << "(none)\n";
}
else
{
os << m_ImageIO << "\n";
}
os << indent << "IO Region: " << m_IORegion << "\n";
if (m_UseCompression)
{
os << indent << "Compression: On\n";
}
else
{
os << indent << "Compression: Off\n";
}
if (m_UseInputMetaDataDictionary)
{
os << indent << "UseInputMetaDataDictionary: On\n";
}
else
{
os << indent << "UseInputMetaDataDictionary: Off\n";
}
if (m_FactorySpecifiedImageIO)
{
os << indent << "FactorySpecifiedmageIO: On\n";
}
else
{
os << indent << "FactorySpecifiedmageIO: Off\n";
}
}
} // end namespace itk
#endif