forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvtkScaleDimension.cxx
152 lines (128 loc) · 5.18 KB
/
vtkScaleDimension.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
/*=========================================================================
Program: Visualization Toolkit
Module: vtkScaleDimension.cxx
-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
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 "vtkCommand.h"
#include "vtkDenseArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkSmartPointer.h"
#include "vtkScaleDimension.h"
#include <stdexcept>
///////////////////////////////////////////////////////////////////////////////
// vtkScaleDimension
vtkStandardNewMacro(vtkScaleDimension);
vtkScaleDimension::vtkScaleDimension() :
Dimension(0),
Invert(false)
{
this->SetNumberOfInputPorts(2);
}
vtkScaleDimension::~vtkScaleDimension()
{
}
void vtkScaleDimension::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Dimension: " << this->Dimension << endl;
os << indent << "Invert: " << this->Invert << endl;
}
int vtkScaleDimension::FillInputPortInformation(int port, vtkInformation* information)
{
switch(port)
{
case 0:
information->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkArrayData");
return 1;
case 1:
information->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkArrayData");
return 1;
}
return 0;
}
int vtkScaleDimension::RequestData(
vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
try
{
// Enforce our preconditions ...
vtkArrayData* const input_array_data = vtkArrayData::GetData(inputVector[0]);
if(!input_array_data)
throw std::runtime_error("Missing array input.");
if(input_array_data->GetNumberOfArrays() != 1)
throw std::runtime_error("Array input must contain exactly one vtkArray.");
vtkTypedArray<double>* const input_array = vtkTypedArray<double>::SafeDownCast(input_array_data->GetArray(0));
if(!input_array)
throw std::runtime_error("Array input must be a vtkTypedArray<double>.");
if(this->Dimension < 0 || this->Dimension >= input_array->GetDimensions())
throw std::runtime_error("Scale dimension out-of-range.");
vtkArrayData* const scale_vector_data = vtkArrayData::GetData(inputVector[1]);
if(!scale_vector_data)
throw std::runtime_error("Missing vector input.");
if(scale_vector_data->GetNumberOfArrays() != 1)
throw std::runtime_error("Vector input must contain exactly one vtkArray.");
vtkDenseArray<double>* const scale_vector = vtkDenseArray<double>::SafeDownCast(scale_vector_data->GetArray(0));
if(!scale_vector)
throw std::runtime_error("Vector input must be a vtkDenseArray<double>.");
if(scale_vector->GetDimensions() != 1)
throw std::runtime_error("Vector input must have exactly one dimension.");
if(scale_vector->GetExtent(0).GetSize() != input_array->GetExtent(this->Dimension).GetSize())
throw std::runtime_error("Vector extents must match Array extents along the scale dimension.");
// Optionally invert the input vector
std::vector<double> scale(scale_vector->GetStorage(), scale_vector->GetStorage() + scale_vector->GetExtent(0).GetSize());
if(this->Invert)
{
for(unsigned int i = 0; i != scale.size(); ++i)
{
if(scale[i])
scale[i] = 1.0 / scale[i];
}
}
// Setup our output ...
vtkTypedArray<double>* const output_array = vtkTypedArray<double>::SafeDownCast(input_array->DeepCopy());
vtkArrayData* const output = vtkArrayData::GetData(outputVector);
output->ClearArrays();
output->AddArray(output_array);
output_array->Delete();
// Multiply each element of our output array by the corresponding element in the scale vector.
vtkArrayCoordinates coordinates;
const vtkIdType offset = output_array->GetExtent(this->Dimension).GetBegin();
const vtkIdType element_count = output_array->GetNonNullSize();
for(vtkIdType n = 0; n != element_count; ++n)
{
output_array->GetCoordinatesN(n, coordinates);
output_array->SetValueN(n, output_array->GetValueN(n) * scale[coordinates[this->Dimension] - offset]);
if( n % 100 == 0 )
{
//emit progress...
double progress = static_cast<double>(n) / static_cast<double>(element_count);
this->InvokeEvent(vtkCommand::ProgressEvent, &progress);
}
}
return 1;
}
catch(std::exception& e)
{
vtkErrorMacro(<< "unhandled exception: " << e.what());
return 0;
}
catch(...)
{
vtkErrorMacro(<< "unknown exception");
return 0;
}
}