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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkCellDataToPointData.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 "vtkCellDataToPointData.h"
#include "vtkCellData.h"
#include "vtkCell.h"
#include "vtkDataSet.h"
#include "vtkIdList.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkUnstructuredGrid.h"
#include "vtkSmartPointer.h"
#include "vtkUnsignedIntArray.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include <algorithm>
#include <functional>
vtkStandardNewMacro(vtkCellDataToPointData);
//----------------------------------------------------------------------------
// Instantiate object so that cell data is not passed to output.
vtkCellDataToPointData::vtkCellDataToPointData()
{
this->PassCellData = 0;
}
#define VTK_MAX_CELLS_PER_POINT 4096
//----------------------------------------------------------------------------
int vtkCellDataToPointData::RequestData(
vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
vtkInformation* info = outputVector->GetInformationObject(0);
vtkDataSet *output = vtkDataSet::SafeDownCast(
info->Get(vtkDataObject::DATA_OBJECT()));
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
vtkDataSet *input = vtkDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDebugMacro(<<"Mapping cell data to point data");
// Special traversal algorithm for unstructured grid
if (input->IsA("vtkUnstructuredGrid"))
{
return this->RequestDataForUnstructuredGrid(0, inputVector, outputVector);
}
vtkIdType cellId, ptId;
vtkIdType numCells, numPts;
vtkCellData *inPD=input->GetCellData();
vtkPointData *outPD=output->GetPointData();
vtkIdList *cellIds;
double weight;
double *weights;
vtkDebugMacro(<<"Mapping cell data to point data");
// First, copy the input to the output as a starting point
output->CopyStructure( input );
cellIds = vtkIdList::New();
cellIds->Allocate(VTK_MAX_CELLS_PER_POINT);
if ( (numPts=input->GetNumberOfPoints()) < 1 )
{
vtkDebugMacro(<<"No input point data!");
cellIds->Delete();
return 1;
}
weights = new double[VTK_MAX_CELLS_PER_POINT];
// Pass the point data first. The fields and attributes
// which also exist in the cell data of the input will
// be over-written during CopyAllocate
output->GetPointData()->CopyGlobalIdsOff();
output->GetPointData()->PassData(input->GetPointData());
output->GetPointData()->CopyFieldOff("vtkGhostLevels");
// notice that inPD and outPD are vtkCellData and vtkPointData; respectively.
// It's weird, but it works.
outPD->InterpolateAllocate(inPD,numPts);
int abort=0;
vtkIdType progressInterval=numPts/20 + 1;
for (ptId=0; ptId < numPts && !abort; ptId++)
{
if ( !(ptId % progressInterval) )
{
this->UpdateProgress(static_cast<double>(ptId)/numPts);
abort = GetAbortExecute();
}
input->GetPointCells(ptId, cellIds);
numCells = cellIds->GetNumberOfIds();
if ( numCells > 0 && numCells < VTK_MAX_CELLS_PER_POINT )
{
weight = 1.0 / numCells;
for (cellId=0; cellId < numCells; cellId++)
{
weights[cellId] = weight;
}
outPD->InterpolatePoint(inPD, ptId, cellIds, weights);
}
else
{
outPD->NullPoint(ptId);
}
}
if ( !this->PassCellData )
{
output->GetCellData()->CopyAllOff();
output->GetCellData()->CopyFieldOn("vtkGhostLevels");
}
output->GetCellData()->PassData(input->GetCellData());
cellIds->Delete();
delete [] weights;
return 1;
}
//----------------------------------------------------------------------------
void vtkCellDataToPointData::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os,indent);
os << indent << "Pass Cell Data: " << (this->PassCellData ? "On\n" : "Off\n");
}
//----------------------------------------------------------------------------
// Helper template function that implement the major part of the algorighm
// which will be expanded by the vtkTemplateMacro. The template function is
// provided so that coverage test can cover this function.
namespace
{
template <typename T>
void __spread (vtkUnstructuredGrid* const src, vtkUnsignedIntArray* const num,
vtkDataArray* const srcarray, vtkDataArray* const dstarray,
vtkIdType ncells, vtkIdType npoints, vtkIdType ncomps)
{
T const* const srcptr = static_cast<T const*>(srcarray->GetVoidPointer(0));
T * const dstptr = static_cast<T *>(dstarray->GetVoidPointer(0));
// zero initialization
vtkstd::fill_n(dstptr, npoints*ncomps, T(0));
// accumulate
T const* srcbeg = srcptr;
for (vtkIdType cid = 0; cid < ncells; ++cid, srcbeg += ncomps)
{
vtkIdList* const pids = src->GetCell(cid)->GetPointIds();
for (vtkIdType i = 0, I = pids->GetNumberOfIds(); i < I; ++i)
{
T* const dstbeg = dstptr + pids->GetId(i)*ncomps;
// accumulate cell data to point data <==> point_data += cell_data
vtkstd::transform(srcbeg,srcbeg+ncomps,dstbeg,dstbeg,vtkstd::plus<T>());
}
}
// average
T* dstbeg = dstptr;
for (vtkIdType pid = 0; pid < npoints; ++pid, dstbeg += ncomps)
{
// guard against divide by zero
if (unsigned int const denum = num->GetValue(pid))
{
// divide point data by the number of cells using it <==>
// point_data /= denum
vtkstd::transform(dstbeg, dstbeg+ncomps, dstbeg,
vtkstd::bind2nd(vtkstd::divides<T>(), denum));
}
}
}
}
//----------------------------------------------------------------------------
int vtkCellDataToPointData::RequestDataForUnstructuredGrid
(vtkInformation*,
vtkInformationVector** inputVector,
vtkInformationVector* outputVector)
{
vtkUnstructuredGrid* const src = vtkUnstructuredGrid::SafeDownCast(
inputVector[0]->GetInformationObject(0)->Get(vtkDataObject::DATA_OBJECT()));
vtkUnstructuredGrid* const dst = vtkUnstructuredGrid::SafeDownCast(
outputVector->GetInformationObject(0)->Get(vtkDataObject::DATA_OBJECT()));
vtkIdType const ncells = src->GetNumberOfCells ();
vtkIdType const npoints = src->GetNumberOfPoints();
if (ncells < 1 || npoints < 1)
{
vtkDebugMacro(<<"No input data!");
return 1;
}
// count the number of cells associated with each point
vtkSmartPointer<vtkUnsignedIntArray> num
= vtkSmartPointer<vtkUnsignedIntArray>::New();
num->SetNumberOfComponents(1);
num->SetNumberOfTuples(npoints);
vtkstd::fill_n(num->GetPointer(0), npoints, 0u);
for (vtkIdType cid = 0; cid < ncells; ++cid)
{
vtkIdList* const pids = src->GetCell(cid)->GetPointIds();
for (vtkIdType i = 0, I = pids->GetNumberOfIds(); i < I; ++i)
{
vtkIdType const pid = pids->GetId(i);
num->SetValue(pid, num->GetValue(pid)+1);
}
}
// First, copy the input to the output as a starting point
dst->CopyStructure(src);
vtkPointData* const opd = dst->GetPointData();
// Pass the point data first. The fields and attributes
// which also exist in the cell data of the input will
// be over-written during CopyAllocate
opd->CopyGlobalIdsOff();
opd->PassData(src->GetPointData());
opd->CopyFieldOff("vtkGhostLevels");
// Copy all existing cell fields into a temporary cell data array
vtkSmartPointer<vtkCellData> clean = vtkSmartPointer<vtkCellData>::New();
clean->PassData(src->GetCellData());
// Remove all fields that are not a data array.
for (vtkIdType fid = clean->GetNumberOfArrays(); fid--;)
{
if (!clean->GetAbstractArray(fid)->IsA("vtkDataArray"))
{
clean->RemoveArray(fid);
}
}
// Cell field list constructed from the filtered cell data array
vtkDataSetAttributes::FieldList cfl(1);
cfl.InitializeFieldList(clean);
opd->InterpolateAllocate(cfl, npoints, npoints);
for (int fid = 0, nfields = cfl.GetNumberOfFields(); fid < nfields; ++fid)
{
// update progress and check for an abort request.
this->UpdateProgress((fid+1.)/nfields);
if (this->GetAbortExecute())
{
break;
}
// indices into the field arrays associated with the cell and the point
// respectively
int const dstid = cfl.GetFieldIndex(fid);
int const srcid = cfl.GetDSAIndex(0,fid);
if (srcid < 0 || dstid < 0)
{
continue;
}
vtkCellData * const srccelldata = clean;
vtkPointData* const dstpointdata = dst->GetPointData();
if (!srccelldata || !dstpointdata)
{
continue;
}
vtkDataArray* const srcarray = srccelldata ->GetArray(srcid);
vtkDataArray* const dstarray = dstpointdata->GetArray(dstid);
dstarray->SetNumberOfTuples(npoints);
vtkIdType const ncomps = srcarray->GetNumberOfComponents();
switch (srcarray->GetDataType())
{
vtkTemplateMacro
(__spread<VTK_TT>(src,num,srcarray,dstarray,ncells,npoints,ncomps));
}
}
if (!this->PassCellData)
{
dst->GetCellData()->CopyAllOff();
dst->GetCellData()->CopyFieldOn("vtkGhostLevels");
}
dst->GetCellData()->PassData(src->GetCellData());
return 1;
}
|