forked from Kitware/VTK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvtkmCoordinateSystemTransform.cxx
220 lines (195 loc) · 7.61 KB
/
vtkmCoordinateSystemTransform.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
//=============================================================================
//
// Copyright (c) Kitware, Inc.
// All rights reserved.
// See LICENSE.txt 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.
//
// Copyright 2012 Sandia Corporation.
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
//=============================================================================
#include "vtkmCoordinateSystemTransform.h"
#include "vtkmConfig.h"
#include "vtkCellData.h"
#include "vtkDataSet.h"
#include "vtkImageData.h"
#include "vtkImageDataToPointSet.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkRectilinearGrid.h"
#include "vtkRectilinearGridToPointSet.h"
#include "vtkUnstructuredGrid.h"
#include "vtkmlib/ArrayConverters.h"
#include "vtkmlib/DataSetConverters.h"
#include "vtkmlib/Storage.h"
#include "vtkmFilterPolicy.h"
#include <vtkm/filter/CoordinateSystemTransform.h>
vtkStandardNewMacro(vtkmCoordinateSystemTransform)
//------------------------------------------------------------------------------
vtkmCoordinateSystemTransform::vtkmCoordinateSystemTransform()
{
this->TransformType = TransformTypes::None;
}
//------------------------------------------------------------------------------
vtkmCoordinateSystemTransform::~vtkmCoordinateSystemTransform()
{
}
//------------------------------------------------------------------------------
void vtkmCoordinateSystemTransform::SetCartesianToCylindrical()
{
this->TransformType = TransformTypes::CarToCyl;
}
//------------------------------------------------------------------------------
void vtkmCoordinateSystemTransform::SetCylindricalToCartesian()
{
this->TransformType = TransformTypes::CylToCar;
}
//------------------------------------------------------------------------------
void vtkmCoordinateSystemTransform::SetCartesianToSpherical()
{
this->TransformType = TransformTypes::CarToSph;
}
//------------------------------------------------------------------------------
void vtkmCoordinateSystemTransform::SetSphericalToCartesian()
{
this->TransformType = TransformTypes::SphToCar;
}
//------------------------------------------------------------------------------
int vtkmCoordinateSystemTransform::FillInputPortInformation(int vtkNotUsed(port),
vtkInformation* info)
{
info->Remove(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE());
info->Append(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkPointSet");
info->Append(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkImageData");
info->Append(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkRectilinearGrid");
return 1;
}
//------------------------------------------------------------------------------
int vtkmCoordinateSystemTransform::RequestDataObject(vtkInformation *request,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
vtkImageData* inImage = vtkImageData::GetData(inputVector[0]);
vtkRectilinearGrid* inRect = vtkRectilinearGrid::GetData(inputVector[0]);
if (inImage || inRect)
{
vtkStructuredGrid* output = vtkStructuredGrid::GetData(outputVector);
if (!output)
{
vtkNew<vtkStructuredGrid> newOutput;
outputVector->GetInformationObject(0)->Set(
vtkDataObject::DATA_OBJECT(), newOutput);
}
return 1;
}
else
{
return this->Superclass::RequestDataObject(request,
inputVector,
outputVector);
}
}
//------------------------------------------------------------------------------
int vtkmCoordinateSystemTransform::RequestData(vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
vtkSmartPointer<vtkPointSet> input = vtkPointSet::GetData(inputVector[0]);
vtkPointSet *output = vtkPointSet::GetData(outputVector);
if (!input)
{
// Try converting image data.
vtkImageData *inImage = vtkImageData::GetData(inputVector[0]);
if (inImage)
{
vtkNew<vtkImageDataToPointSet> image2points;
image2points->SetInputData(inImage);
image2points->Update();
input = image2points->GetOutput();
}
}
if (!input)
{
// Try converting rectilinear grid.
vtkRectilinearGrid *inRect = vtkRectilinearGrid::GetData(inputVector[0]);
if (inRect)
{
vtkNew<vtkRectilinearGridToPointSet> rect2points;
rect2points->SetInputData(inRect);
rect2points->Update();
input = rect2points->GetOutput();
}
}
if (!input)
{
vtkErrorMacro(<< "Invalid or missing input");
return 0;
}
output->CopyStructure(input);
vtkPoints* inPts = input->GetPoints();
if (!inPts || this->TransformType == TransformTypes::None)
{
vtkErrorMacro(<< "Miss input points or transform type has not been specified");
return 0;
}
try
{
vtkm::cont::DataSet in = tovtkm::Convert(input, tovtkm::FieldsFlag::Points);
vtkmInputFilterPolicy policy;
vtkDataArray* transformResult;
if (this->TransformType == TransformTypes::CarToCyl ||
this->TransformType == TransformTypes::CylToCar)
{ // Cylindrical coordinate transform
vtkm::filter::CylindricalCoordinateTransform cylindricalCT;
cylindricalCT.SetUseCoordinateSystemAsField(true);
(this->TransformType == TransformTypes::CarToCyl) ?
cylindricalCT.SetCartesianToCylindrical() :
cylindricalCT.SetCylindricalToCartesian();
auto result = cylindricalCT.Execute(in, policy);
transformResult = fromvtkm::Convert(result.GetField(
"cylindricalCoordinateSystemTransform",
vtkm::cont::Field::Association::POINTS));
}
else
{ // Spherical coordinate system
vtkm::filter::SphericalCoordinateTransform sphericalCT;
sphericalCT.SetUseCoordinateSystemAsField(true);
(this->TransformType == TransformTypes::CarToSph) ?
sphericalCT.SetCartesianToSpherical() :
sphericalCT.SetSphericalToCartesian();
auto result = sphericalCT.Execute(in, policy);
transformResult = fromvtkm::Convert(result.GetField(
"sphericalCoordinateSystemTransform",
vtkm::cont::Field::Association::POINTS));
}
vtkPoints* newPts = vtkPoints::New();
// Update points
newPts->SetNumberOfPoints(transformResult->GetNumberOfTuples());
newPts->SetData(transformResult);
output->SetPoints(newPts);
newPts->Delete();
transformResult->FastDelete();
}
catch(const vtkm::cont::Error& e)
{
vtkErrorMacro(<< "VTK-m error: " << e.GetMessage());
}
// Update ourselves and release memory
output->GetPointData()->CopyNormalsOff(); // distorted geometry
output->GetPointData()->PassData(input->GetPointData());
output->GetCellData()->CopyNormalsOff(); // distorted geometry
output->GetCellData()->PassData(input->GetCellData());
return 1;
}
//------------------------------------------------------------------------------
void vtkmCoordinateSystemTransform::PrintSelf(std::ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}