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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkTransposeMatrix.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 "vtkSparseArray.h"
#include "vtkTransposeMatrix.h"
///////////////////////////////////////////////////////////////////////////////
// vtkTransposeMatrix
vtkStandardNewMacro(vtkTransposeMatrix);
vtkTransposeMatrix::vtkTransposeMatrix()
{
}
vtkTransposeMatrix::~vtkTransposeMatrix()
{
}
void vtkTransposeMatrix::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
int vtkTransposeMatrix::RequestData(
vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
vtkArrayData* const input = vtkArrayData::GetData(inputVector[0]);
if(input->GetNumberOfArrays() != 1)
{
vtkErrorMacro(<< "vtkTransposeMatrix requires vtkArrayData containing exactly one array as input.");
return 0;
}
if(vtkSparseArray<double>* const input_array = vtkSparseArray<double>::SafeDownCast(
input->GetArray(static_cast<vtkIdType>(0))))
{
if(input_array->GetDimensions() != 2)
{
vtkErrorMacro(<< "vtkTransposeMatrix requires a matrix as input.");
return 0;
}
const vtkArrayExtents input_extents = input_array->GetExtents();
vtkSparseArray<double>* const output_array = vtkSparseArray<double>::New();
output_array->Resize(vtkArrayExtents(input_extents[1], input_extents[0]));
output_array->SetDimensionLabel(0, input_array->GetDimensionLabel(1));
output_array->SetDimensionLabel(1, input_array->GetDimensionLabel(0));
vtkArrayCoordinates coordinates;
const vtkIdType element_count = input_array->GetNonNullSize();
for(vtkIdType n = 0; n != element_count; ++n)
{
input_array->GetCoordinatesN(n, coordinates);
output_array->AddValue(vtkArrayCoordinates(coordinates[1], coordinates[0]), input_array->GetValueN(n));
}
vtkArrayData* const output = vtkArrayData::GetData(outputVector);
output->ClearArrays();
output->AddArray(output_array);
output_array->Delete();
}
else
{
vtkDenseArray<double>* const input_array2=vtkDenseArray<double>::SafeDownCast(
input->GetArray(static_cast<vtkIdType>(0)));
if(input_array2!=0)
{
if(input_array2->GetDimensions() != 2)
{
vtkErrorMacro(<< "vtkTransposeMatrix requires a matrix as input.");
return 0;
}
const vtkArrayExtents input_extents = input_array2->GetExtents();
vtkDenseArray<double>* const output_array = vtkDenseArray<double>::New();
output_array->Resize(vtkArrayExtents(input_extents[1],input_extents[0]));
output_array->SetDimensionLabel(0, input_array2->GetDimensionLabel(1));
output_array->SetDimensionLabel(1, input_array2->GetDimensionLabel(0));
for(vtkIdType i = input_extents[0].GetBegin(); i != input_extents[0].GetEnd(); ++i)
{
for(vtkIdType j = input_extents[1].GetBegin(); j != input_extents[1].GetEnd(); ++j)
{
output_array->SetValue(
vtkArrayCoordinates(j, i),
input_array2->GetValue(vtkArrayCoordinates(i, j)));
}
}
vtkArrayData* const output = vtkArrayData::GetData(outputVector);
output->ClearArrays();
output->AddArray(output_array);
output_array->Delete();
}
else
{
vtkErrorMacro(<< "Unsupported input array type.");
return 0;
}
}
return 1;
}
|