forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkXMLImageDataReader.cxx
163 lines (133 loc) · 5.4 KB
/
vtkXMLImageDataReader.cxx
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
/*=========================================================================
Program: Visualization Toolkit
Module: vtkXMLImageDataReader.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/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 notice for more information.
=========================================================================*/
#include "vtkXMLImageDataReader.h"
#include "vtkDataArray.h"
#include "vtkImageData.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkXMLDataElement.h"
#include "vtkInformation.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include "vtkInformationVector.h"
vtkStandardNewMacro(vtkXMLImageDataReader);
//----------------------------------------------------------------------------
vtkXMLImageDataReader::vtkXMLImageDataReader()
{
}
//----------------------------------------------------------------------------
vtkXMLImageDataReader::~vtkXMLImageDataReader()
{
}
//----------------------------------------------------------------------------
void vtkXMLImageDataReader::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
vtkImageData* vtkXMLImageDataReader::GetOutput()
{
return this->GetOutput(0);
}
//----------------------------------------------------------------------------
vtkImageData* vtkXMLImageDataReader::GetOutput(int idx)
{
return vtkImageData::SafeDownCast( this->GetOutputDataObject(idx) );
}
//----------------------------------------------------------------------------
const char* vtkXMLImageDataReader::GetDataSetName()
{
return "ImageData";
}
//----------------------------------------------------------------------------
void vtkXMLImageDataReader::SetOutputExtent(int* extent)
{
vtkImageData::SafeDownCast(this->GetCurrentOutput())->SetExtent(extent);
}
//----------------------------------------------------------------------------
int vtkXMLImageDataReader::ReadPrimaryElement(vtkXMLDataElement* ePrimary)
{
if(!this->Superclass::ReadPrimaryElement(ePrimary)) { return 0; }
// Get the image's origin.
if(ePrimary->GetVectorAttribute("Origin", 3, this->Origin) != 3)
{
this->Origin[0] = 0;
this->Origin[1] = 0;
this->Origin[2] = 0;
}
// Get the image's spacing.
if(ePrimary->GetVectorAttribute("Spacing", 3, this->Spacing) != 3)
{
this->Spacing[0] = 1;
this->Spacing[1] = 1;
this->Spacing[2] = 1;
}
return 1;
}
//----------------------------------------------------------------------------
// Note that any changes (add or removing information) made to this method
// should be replicated in CopyOutputInformation
void vtkXMLImageDataReader::SetupOutputInformation(vtkInformation *outInfo)
{
this->Superclass::SetupOutputInformation(outInfo);
outInfo->Set(vtkDataObject::ORIGIN(), this->Origin, 3);
outInfo->Set(vtkDataObject::SPACING(), this->Spacing, 3);
double bounds[6];
bounds[0] = this->Origin[0] + this->Spacing[0] * this->WholeExtent[0];
bounds[1] = this->Origin[0] + this->Spacing[0] * this->WholeExtent[1];
bounds[2] = this->Origin[1] + this->Spacing[1] * this->WholeExtent[2];
bounds[3] = this->Origin[1] + this->Spacing[1] * this->WholeExtent[3];
bounds[4] = this->Origin[2] + this->Spacing[2] * this->WholeExtent[4];
bounds[5] = this->Origin[2] + this->Spacing[2] * this->WholeExtent[5];
outInfo->Set(vtkStreamingDemandDrivenPipeline::WHOLE_BOUNDING_BOX(),
bounds, 6);
}
//----------------------------------------------------------------------------
void vtkXMLImageDataReader::CopyOutputInformation(vtkInformation *outInfo, int port)
{
this->Superclass::CopyOutputInformation(outInfo, port);
vtkInformation *localInfo =
this->GetExecutive()->GetOutputInformation( port );
if ( localInfo->Has(vtkDataObject::ORIGIN()) )
{
outInfo->CopyEntry( localInfo, vtkDataObject::ORIGIN() );
}
if ( localInfo->Has(vtkDataObject::SPACING()) )
{
outInfo->CopyEntry( localInfo, vtkDataObject::SPACING() );
}
}
//----------------------------------------------------------------------------
int vtkXMLImageDataReader::FillOutputPortInformation(int, vtkInformation* info)
{
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkImageData");
return 1;
}
//----------------------------------------------------------------------------
void vtkXMLImageDataReader::SetupUpdateExtentInformation(
vtkInformation *outInfo)
{
int pieceNum = outInfo->Get(
vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER());
if (pieceNum > -1)
{
int* pieceExtent = this->PieceExtents + pieceNum*6;
static double bounds[] = {-1.0,1.0, -1.0,1.0, -1.0,1.0};
bounds[0] = this->Origin[0]+pieceExtent[0]*this->Spacing[0];
bounds[1] = this->Origin[0]+pieceExtent[1]*this->Spacing[0];
bounds[2] = this->Origin[1]+pieceExtent[2]*this->Spacing[1];
bounds[3] = this->Origin[1]+pieceExtent[3]*this->Spacing[1];
bounds[4] = this->Origin[2]+pieceExtent[4]*this->Spacing[2];
bounds[5] = this->Origin[2]+pieceExtent[5]*this->Spacing[2];
outInfo->Set(vtkStreamingDemandDrivenPipeline::PIECE_BOUNDING_BOX(),
bounds, 6);
}
this->Superclass::SetupUpdateExtentInformation(outInfo);
}