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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkVectorNorm.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 "vtkVectorNorm.h"
#include "vtkCellData.h"
#include "vtkDataSet.h"
#include "vtkFloatArray.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include <math.h>
vtkStandardNewMacro(vtkVectorNorm);
// Construct with normalize flag off.
vtkVectorNorm::vtkVectorNorm()
{
this->Normalize = 0;
this->AttributeMode = VTK_ATTRIBUTE_MODE_DEFAULT;
}
int vtkVectorNorm::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and output
vtkDataSet *input = vtkDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDataSet *output = vtkDataSet::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkIdType numVectors, i;
int computePtScalars=1, computeCellScalars=1;
vtkFloatArray *newScalars;
double v[3], s, maxScalar;
vtkDataArray *ptVectors, *cellVectors;
vtkPointData *pd=input->GetPointData(), *outPD=output->GetPointData();
vtkCellData *cd=input->GetCellData(), *outCD=output->GetCellData();
// Initialize
vtkDebugMacro(<<"Computing norm of vectors!");
// First, copy the input to the output as a starting point
output->CopyStructure( input );
ptVectors = pd->GetVectors();
cellVectors = cd->GetVectors();
if (!ptVectors || this->AttributeMode == VTK_ATTRIBUTE_MODE_USE_CELL_DATA)
{
computePtScalars = 0;
}
if (!cellVectors || this->AttributeMode == VTK_ATTRIBUTE_MODE_USE_POINT_DATA)
{
computeCellScalars = 0;
}
if ( !computeCellScalars && !computePtScalars )
{
vtkErrorMacro(<< "No vector norm to compute!");
return 1;
}
// Allocate / operate on point data
int abort=0;
vtkIdType progressInterval;
if ( computePtScalars )
{
numVectors = ptVectors->GetNumberOfTuples();
newScalars = vtkFloatArray::New();
newScalars->SetNumberOfTuples(numVectors);
progressInterval=numVectors/10+1;
for (maxScalar=0.0, i=0; i < numVectors && !abort; i++)
{
ptVectors->GetTuple(i, v);
s = sqrt((double)v[0]*v[0] + v[1]*v[1] + v[2]*v[2]);
if ( s > maxScalar )
{
maxScalar = s;
}
newScalars->SetComponent(i,0,s);
if ( ! (i % progressInterval) )
{
vtkDebugMacro(<<"Computing point vector norm #" << i);
this->UpdateProgress (0.5*i/numVectors);
}
}
// If necessary, normalize
if ( this->Normalize && maxScalar > 0.0 )
{
for (i=0; i < numVectors; i++)
{
s = newScalars->GetComponent(i,0);
s /= maxScalar;
newScalars->SetComponent(i,0,s);
}
}
int idx = outPD->AddArray(newScalars);
outPD->SetActiveAttribute(idx, vtkDataSetAttributes::SCALARS);
newScalars->Delete();
outPD->CopyScalarsOff();
}//if computing point scalars
// Allocate / operate on cell data
if ( computeCellScalars )
{
numVectors = cellVectors->GetNumberOfTuples();
newScalars = vtkFloatArray::New();
newScalars->SetNumberOfTuples(numVectors);
progressInterval=numVectors/10+1;
for (maxScalar=0.0, i=0; i < numVectors && !abort; i++)
{
cellVectors->GetTuple(i, v);
s = sqrt((double)v[0]*v[0] + v[1]*v[1] + v[2]*v[2]);
if ( s > maxScalar )
{
maxScalar = s;
}
newScalars->SetComponent(i,0,s);
if ( ! (i % progressInterval) )
{
vtkDebugMacro(<<"Computing cell vector norm #" << i);
this->UpdateProgress (0.5+0.5*i/numVectors);
}
}
// If necessary, normalize
if ( this->Normalize && maxScalar > 0.0 )
{
for (i=0; i < numVectors; i++)
{
s = newScalars->GetComponent(i,0);
s /= maxScalar;
newScalars->SetComponent(i,0,s);
}
}
int idx = outCD->AddArray(newScalars);
outCD->SetActiveAttribute(idx, vtkDataSetAttributes::SCALARS);
newScalars->Delete();
outCD->CopyScalarsOff();
}//if computing cell scalars
// Pass appropriate data through to output
outPD->PassData(pd);
outCD->PassData(cd);
return 1;
}
// Return the method for generating scalar data as a string.
const char *vtkVectorNorm::GetAttributeModeAsString(void)
{
if ( this->AttributeMode == VTK_ATTRIBUTE_MODE_DEFAULT )
{
return "Default";
}
else if ( this->AttributeMode == VTK_ATTRIBUTE_MODE_USE_POINT_DATA )
{
return "UsePointData";
}
else
{
return "UseCellData";
}
}
void vtkVectorNorm::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Normalize: " << (this->Normalize ? "On\n" : "Off\n");
os << indent << "Attribute Mode: " << this->GetAttributeModeAsString()
<< endl;
}
|