forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvtkImageAlgorithm.cxx
436 lines (391 loc) · 14.6 KB
/
vtkImageAlgorithm.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
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/*=========================================================================
Program: Visualization Toolkit
Module: vtkImageAlgorithm.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 "vtkImageAlgorithm.h"
#include "vtkDataArray.h"
#include "vtkObjectFactory.h"
#include "vtkCellData.h"
#include "vtkPointData.h"
#include "vtkImageData.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkStreamingDemandDrivenPipeline.h"
//----------------------------------------------------------------------------
vtkImageAlgorithm::vtkImageAlgorithm()
{
this->SetNumberOfInputPorts(1);
this->SetNumberOfOutputPorts(1);
// by default process active point scalars
this->SetInputArrayToProcess(0,0,0,vtkDataObject::FIELD_ASSOCIATION_POINTS,
vtkDataSetAttributes::SCALARS);
}
//----------------------------------------------------------------------------
vtkImageAlgorithm::~vtkImageAlgorithm()
{
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
}
//----------------------------------------------------------------------------
// This is the superclasses style of Execute method. Convert it into
// an imaging style Execute method.
int vtkImageAlgorithm::RequestData(
vtkInformation* request,
vtkInformationVector** vtkNotUsed( inputVector ),
vtkInformationVector* outputVector)
{
// the default implimentation is to do what the old pipeline did find what
// output is requesting the data, and pass that into ExecuteData
// which output port did the request come from
int outputPort =
request->Get(vtkDemandDrivenPipeline::FROM_OUTPUT_PORT());
// if output port is negative then that means this filter is calling the
// update directly, in that case just assume port 0
if (outputPort == -1)
{
outputPort = 0;
}
// get the data object
vtkInformation *outInfo =
outputVector->GetInformationObject(outputPort);
// call ExecuteData
if (outInfo)
{
this->ExecuteData( outInfo->Get(vtkDataObject::DATA_OBJECT()) );
}
else
{
this->ExecuteData(NULL);
}
return 1;
}
//----------------------------------------------------------------------------
int vtkImageAlgorithm::ProcessRequest(vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
// generate the data
if(request->Has(vtkDemandDrivenPipeline::REQUEST_DATA()))
{
return this->RequestData(request, inputVector, outputVector);
}
// execute information
if(request->Has(vtkDemandDrivenPipeline::REQUEST_INFORMATION()))
{
return this->RequestInformation(request, inputVector, outputVector);
}
// propagate update extent
if(request->Has(vtkStreamingDemandDrivenPipeline::REQUEST_UPDATE_EXTENT()))
{
return this->RequestUpdateExtent(request, inputVector, outputVector);
}
return this->Superclass::ProcessRequest(request, inputVector, outputVector);
}
//----------------------------------------------------------------------------
// Assume that any source that implements ExecuteData
// can handle an empty extent.
void vtkImageAlgorithm::ExecuteData(vtkDataObject *)
{
this->Execute();
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::Execute()
{
vtkErrorMacro(<< "Definition of Execute() method should be in subclass and you should really use the ExecuteData(vtkInformation *request,...) signature instead");
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::CopyInputArrayAttributesToOutput
(vtkInformation* vtkNotUsed( request ),
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
// for image data to image data
if (this->GetNumberOfInputPorts() && this->GetNumberOfOutputPorts())
{
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
// if the input is image data
if (vtkImageData::SafeDownCast(inInfo->Get(vtkDataObject::DATA_OBJECT())))
{
vtkInformation *info =
this->GetInputArrayFieldInformation(0, inputVector);
if (info)
{
int scalarType = info->Get( vtkDataObject::FIELD_ARRAY_TYPE());
int numComp = info->Get( vtkDataObject::FIELD_NUMBER_OF_COMPONENTS());
for(int i=0; i < this->GetNumberOfOutputPorts(); ++i)
{
vtkInformation* outInfo = outputVector->GetInformationObject(i);
// if the output is image data
if (vtkImageData::SafeDownCast
(outInfo->Get(vtkDataObject::DATA_OBJECT())))
{
// copy scalar type and scalar number of components
vtkDataObject::SetPointDataActiveScalarInfo(outInfo,
scalarType, numComp);
}
}
}
}
}
}
//----------------------------------------------------------------------------
int vtkImageAlgorithm::RequestInformation(
vtkInformation* request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
// do nothing except copy scalar type info
this->CopyInputArrayAttributesToOutput(request,inputVector,outputVector);
return 1;
}
//----------------------------------------------------------------------------
int vtkImageAlgorithm::RequestUpdateExtent(
vtkInformation* vtkNotUsed(request),
vtkInformationVector** vtkNotUsed(inputVector),
vtkInformationVector* vtkNotUsed(outputVector))
{
// do nothing let subclasses handle it
return 1;
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::AllocateOutputData(vtkImageData *output,
int *uExtent)
{
// set the extent to be the update extent
output->SetExtent(uExtent);
output->AllocateScalars();
}
//----------------------------------------------------------------------------
vtkImageData *vtkImageAlgorithm::AllocateOutputData(vtkDataObject *output)
{
// set the extent to be the update extent
vtkImageData *out = vtkImageData::SafeDownCast(output);
if (out)
{
// this needs to be fixed -Ken
vtkStreamingDemandDrivenPipeline *sddp =
vtkStreamingDemandDrivenPipeline::SafeDownCast(this->GetExecutive());
int numInfoObj = sddp->GetNumberOfOutputPorts();
if (sddp && numInfoObj == 1)
{
int extent[6];
sddp->GetOutputInformation(0)->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(),extent);
out->SetExtent(extent);
}
else
{
vtkWarningMacro( "There are multiple output ports. You cannot use AllocateOutputData" );
return NULL;
}
out->AllocateScalars();
}
return out;
}
//----------------------------------------------------------------------------
// by default copy the attr from the first input to the first output
void vtkImageAlgorithm::CopyAttributeData(vtkImageData *input,
vtkImageData *output,
vtkInformationVector **inputVector)
{
if (!input || !output)
{
return;
}
int inExt[6];
int outExt[6];
vtkDataArray *inArray;
vtkDataArray *outArray;
input->GetExtent(inExt);
output->GetExtent(outExt);
// Do not copy the array we will be generating.
inArray = this->GetInputArrayToProcess(0,inputVector);
// Conditionally copy point and cell data. Only copy if corresponding
// indexes refer to identical points.
double *oIn = input->GetOrigin();
double *sIn = input->GetSpacing();
double *oOut = output->GetOrigin();
double *sOut = output->GetSpacing();
if (oIn[0] == oOut[0] && oIn[1] == oOut[1] && oIn[2] == oOut[2] &&
sIn[0] == sOut[0] && sIn[1] == sOut[1] && sIn[2] == sOut[2])
{
output->GetPointData()->CopyAllOn();
output->GetCellData()->CopyAllOn();
if (inArray && inArray->GetName())
{
output->GetPointData()->CopyFieldOff(inArray->GetName());
}
else if (inArray == input->GetPointData()->GetScalars())
{
output->GetPointData()->CopyScalarsOff();
}
// If the extents are the same, then pass the attribute data for
// efficiency.
if (inExt[0] == outExt[0] && inExt[1] == outExt[1] &&
inExt[2] == outExt[2] && inExt[3] == outExt[3] &&
inExt[4] == outExt[4] && inExt[5] == outExt[5])
{// Pass
// set the name of the output to match the input name
outArray = output->GetPointData()->GetScalars();
if (inArray)
{
outArray->SetName(inArray->GetName());
}
// Cache the scalars otherwise it may get overwritten
// during CopyAttributes()
outArray->Register(this);
output->GetPointData()->SetScalars(0);
output->CopyAttributes(input);
// Restore the scalars
int idx = output->GetPointData()->AddArray(outArray);
output->GetPointData()->SetActiveAttribute(idx,
vtkDataSetAttributes::SCALARS);
outArray->UnRegister(this);
}
else
{// Copy
// Since this can be expensive to copy all of these values,
// lets make sure there are arrays to copy (other than the scalars)
if (input->GetPointData()->GetNumberOfArrays() > 1)
{
// Copy the point data.
// CopyAllocate frees all arrays.
// Cache the scalars otherwise it may get overwritten
// during CopyAllocate()
vtkDataArray *tmp = output->GetPointData()->GetScalars();
// set the name of the output to match the input name
if (inArray)
{
tmp->SetName(inArray->GetName());
}
tmp->Register(this);
output->GetPointData()->SetScalars(0);
output->GetPointData()->CopyAllocate(input->GetPointData(),
output->GetNumberOfPoints());
// Restore the scalars
int idx = output->GetPointData()->AddArray(tmp);
output->GetPointData()->SetActiveAttribute(idx,
vtkDataSetAttributes::SCALARS);
tmp->UnRegister(this);
// Now Copy The point data, but only if output is a subextent of the
// input.
if (outExt[0] >= inExt[0] && outExt[1] <= inExt[1] &&
outExt[2] >= inExt[2] && outExt[3] <= inExt[3] &&
outExt[4] >= inExt[4] && outExt[5] <= inExt[5])
{
output->GetPointData()->CopyStructuredData(input->GetPointData(),
inExt, outExt);
}
}
else
{
if (inArray)
{
vtkDataArray* tmp = output->GetPointData()->GetScalars();
tmp->SetName(inArray->GetName());
}
}
if (input->GetCellData()->GetNumberOfArrays() > 0)
{
output->GetCellData()->CopyAllocate(input->GetCellData(),
output->GetNumberOfCells());
// Cell extent is one less than point extent.
// Conditional to handle a colapsed axis (lower dimensional cells).
if (inExt[0] < inExt[1]) {--inExt[1];}
if (inExt[2] < inExt[3]) {--inExt[3];}
if (inExt[4] < inExt[5]) {--inExt[5];}
// Cell extent is one less than point extent.
if (outExt[0] < outExt[1]) {--outExt[1];}
if (outExt[2] < outExt[3]) {--outExt[3];}
if (outExt[4] < outExt[5]) {--outExt[5];}
// Now Copy The cell data, but only if output is a subextent of the input.
if (outExt[0] >= inExt[0] && outExt[1] <= inExt[1] &&
outExt[2] >= inExt[2] && outExt[3] <= inExt[3] &&
outExt[4] >= inExt[4] && outExt[5] <= inExt[5])
{
output->GetCellData()->CopyStructuredData(input->GetCellData(),
inExt, outExt);
}
}
}
}
}
//----------------------------------------------------------------------------
vtkImageData* vtkImageAlgorithm::GetOutput()
{
return this->GetOutput(0);
}
//----------------------------------------------------------------------------
vtkImageData* vtkImageAlgorithm::GetOutput(int port)
{
return vtkImageData::SafeDownCast(this->GetOutputDataObject(port));
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::SetOutput(vtkDataObject* d)
{
this->GetExecutive()->SetOutputData(0, d);
}
//----------------------------------------------------------------------------
int vtkImageAlgorithm::FillOutputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
// now add our info
info->Set(vtkDataObject::DATA_TYPE_NAME(), "vtkImageData");
return 1;
}
//----------------------------------------------------------------------------
int vtkImageAlgorithm::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkImageData");
return 1;
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::SetInput(vtkDataObject* input)
{
this->SetInput(0, input);
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::SetInput(int index, vtkDataObject* input)
{
if(input)
{
this->SetInputConnection(index, input->GetProducerPort());
}
else
{
// Setting a NULL input removes the connection.
this->SetInputConnection(index, 0);
}
}
//----------------------------------------------------------------------------
vtkDataObject* vtkImageAlgorithm::GetInput(int port)
{
return this->GetExecutive()->GetInputData(port, 0);
}
//----------------------------------------------------------------------------
vtkImageData* vtkImageAlgorithm::GetImageDataInput(int port)
{
return vtkImageData::SafeDownCast(this->GetInput(port));
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::AddInput(vtkDataObject* input)
{
this->AddInput(0, input);
}
//----------------------------------------------------------------------------
void vtkImageAlgorithm::AddInput(int index, vtkDataObject* input)
{
if(input)
{
this->AddInputConnection(index, input->GetProducerPort());
}
}