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 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkProbeFilter.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 "vtkProbeFilter.h"
#include "vtkCellData.h"
#include "vtkCell.h"
#include "vtkCharArray.h"
#include "vtkIdTypeArray.h"
#include "vtkImageData.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPointData.h"
#include "vtkStreamingDemandDrivenPipeline.h"
#include <vtkstd/vector>
vtkStandardNewMacro(vtkProbeFilter);
class vtkProbeFilter::vtkVectorOfArrays :
public vtkstd::vector<vtkDataArray*>
{
};
//----------------------------------------------------------------------------
vtkProbeFilter::vtkProbeFilter()
{
this->SpatialMatch = 0;
this->ValidPoints = vtkIdTypeArray::New();
this->MaskPoints = vtkCharArray::New();
this->MaskPoints->SetNumberOfComponents(1);
this->SetNumberOfInputPorts(2);
this->ValidPointMaskArrayName = 0;
this->SetValidPointMaskArrayName("vtkValidPointMask");
this->CellArrays = new vtkVectorOfArrays();
this->NumberOfValidPoints = 0;
this->PointList = 0;
this->CellList = 0;
this->UseNullPoint = true;
}
//----------------------------------------------------------------------------
vtkProbeFilter::~vtkProbeFilter()
{
this->MaskPoints->Delete();
this->MaskPoints = 0;
this->ValidPoints->Delete();
this->ValidPoints = NULL;
this->SetValidPointMaskArrayName(0);
delete this->CellArrays;
delete this->PointList;
delete this->CellList;
}
//----------------------------------------------------------------------------
void vtkProbeFilter::SetSourceConnection(vtkAlgorithmOutput* algOutput)
{
this->SetInputConnection(1, algOutput);
}
//----------------------------------------------------------------------------
void vtkProbeFilter::SetSource(vtkDataObject *input)
{
this->SetInput(1, input);
}
//----------------------------------------------------------------------------
vtkDataObject *vtkProbeFilter::GetSource()
{
if (this->GetNumberOfInputConnections(1) < 1)
{
return NULL;
}
return this->GetExecutive()->GetInputData(1, 0);
}
//----------------------------------------------------------------------------
int vtkProbeFilter::RequestData(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *sourceInfo = inputVector[1]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
// get the input and output
vtkDataSet *input = vtkDataSet::SafeDownCast(
inInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDataSet *source = vtkDataSet::SafeDownCast(
sourceInfo->Get(vtkDataObject::DATA_OBJECT()));
vtkDataSet *output = vtkDataSet::SafeDownCast(
outInfo->Get(vtkDataObject::DATA_OBJECT()));
if (!source)
{
return 0;
}
this->Probe(input, source, output);
return 1;
}
//----------------------------------------------------------------------------
void vtkProbeFilter::BuildFieldList(vtkDataSet* source)
{
delete this->PointList;
delete this->CellList;
this->PointList = new vtkDataSetAttributes::FieldList(1);
this->PointList->InitializeFieldList(source->GetPointData());
this->CellList = new vtkDataSetAttributes::FieldList(1);
this->CellList->InitializeFieldList(source->GetCellData());
}
//----------------------------------------------------------------------------
// * input -- dataset probed with
// * source -- dataset probed into
// * output - output.
void vtkProbeFilter::InitializeForProbing(vtkDataSet* input,
vtkDataSet* output)
{
if (!this->PointList || !this->CellList)
{
vtkErrorMacro("BuildFieldList() must be called before calling this method.");
return;
}
vtkIdType numPts = input->GetNumberOfPoints();
// Initialize valid points/mask points arrays.
this->NumberOfValidPoints = 0;
this->ValidPoints->Allocate(numPts);
this->MaskPoints->SetNumberOfTuples(numPts);
this->MaskPoints->FillComponent(0, 0);
this->MaskPoints->SetName(this->ValidPointMaskArrayName?
this->ValidPointMaskArrayName: "vtkValidPointMask");
// First, copy the input to the output as a starting point
output->CopyStructure(input);
vtkPointData* outPD = output->GetPointData();
// Allocate storage for output PointData
// All input PD is passed to output as PD. Those arrays in input CD that are
// not present in output PD will be passed as output PD.
outPD = output->GetPointData();
outPD->InterpolateAllocate((*this->PointList), numPts, numPts);
vtkCellData* tempCellData = vtkCellData::New();
tempCellData->InterpolateAllocate( (*this->CellList), numPts, numPts);
this->CellArrays->clear();
int numCellArrays = tempCellData->GetNumberOfArrays();
for (int cc=0; cc < numCellArrays; cc++)
{
vtkDataArray* inArray = tempCellData->GetArray(cc);
if (inArray && inArray->GetName() && !outPD->GetArray(inArray->GetName()))
{
outPD->AddArray(inArray);
this->CellArrays->push_back(inArray);
}
}
tempCellData->Delete();
outPD->AddArray(this->MaskPoints);
// Since we haven't resize the point arrays, we need to fill them up with
// nulls whenever we have a miss when probing.
this->UseNullPoint = true;
// BUG FIX: JB.
// Output gets setup from input, but when output is imagedata, scalartype
// depends on source scalartype not input scalartype
if (output->IsA("vtkImageData"))
{
vtkImageData *out = static_cast<vtkImageData *>(output);
vtkDataArray *s = outPD->GetScalars();
if (s)
{
out->SetScalarType(s->GetDataType());
out->SetNumberOfScalarComponents(s->GetNumberOfComponents());
}
}
}
//----------------------------------------------------------------------------
void vtkProbeFilter::Probe(vtkDataSet *input, vtkDataSet *source,
vtkDataSet *output)
{
this->BuildFieldList(source);
this->InitializeForProbing(input, output);
this->ProbeEmptyPoints(input, 0, source, output);
}
//----------------------------------------------------------------------------
void vtkProbeFilter::ProbeEmptyPoints(vtkDataSet *input,
int srcIdx,
vtkDataSet *source, vtkDataSet *output)
{
vtkIdType ptId, numPts;
double x[3], tol2;
vtkCell *cell;
vtkPointData *pd, *outPD;
vtkCellData* cd;
int subId;
double pcoords[3], *weights;
double fastweights[256];
vtkDebugMacro(<<"Probing data");
pd = source->GetPointData();
cd = source->GetCellData();
// lets use a stack allocated array if possible for performance reasons
int mcs = source->GetMaxCellSize();
if (mcs<=256)
{
weights = fastweights;
}
else
{
weights = new double[mcs];
}
numPts = input->GetNumberOfPoints();
outPD = output->GetPointData();
char* maskArray = this->MaskPoints->GetPointer(0);
// Use tolerance as a function of size of source data
//
tol2 = source->GetLength();
tol2 = tol2 ? tol2*tol2 / 1000.0 : 0.001;
// the actual sampling rate needs to be considered for a
// more appropriate / accurate selection of the tolerance.
// Otherwise the tolerance simply determined above might be
// so large as to cause incorrect cell location
double bounds[6];
source->GetBounds(bounds);
double minRes = 10000000000.0;
double axisRes[3];
for ( int i = 0; i < 3; i ++ )
{
axisRes[i] = ( bounds[i * 2 + 1] - bounds[i * 2] ) / numPts;
if ( (axisRes[i] > 0.0) && (axisRes[i] < minRes) )
minRes = axisRes[i];
}
double minRes2 = minRes * minRes;
tol2 = tol2 > minRes2 ? minRes2 : tol2;
// Loop over all input points, interpolating source data
//
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();
}
if (maskArray[ptId] == static_cast<char>(1))
{
// skip points which have already been probed with success.
// This is helpful for multiblock dataset probing.
continue;
}
// Get the xyz coordinate of the point in the input dataset
input->GetPoint(ptId, x);
// Find the cell that contains xyz and get it
vtkIdType cellId = source->FindCell(x,NULL,-1,tol2,subId,pcoords,weights);
if (cellId >= 0)
{
cell = source->GetCell(cellId);
}
else
{
cell = 0;
}
if (cell)
{
// Interpolate the point data
outPD->InterpolatePoint((*this->PointList), pd, srcIdx, ptId,
cell->PointIds, weights);
this->ValidPoints->InsertNextValue(ptId);
this->NumberOfValidPoints++;
vtkVectorOfArrays::iterator iter;
for (iter = this->CellArrays->begin(); iter != this->CellArrays->end();
++iter)
{
vtkDataArray* inArray = cd->GetArray((*iter)->GetName());
if (inArray)
{
outPD->CopyTuple(inArray, *iter, cellId, ptId);
}
}
maskArray[ptId] = static_cast<char>(1);
}
else
{
if (this->UseNullPoint)
{
outPD->NullPoint(ptId);
}
}
}
if (mcs>256)
{
delete [] weights;
}
}
//----------------------------------------------------------------------------
int vtkProbeFilter::RequestInformation(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *sourceInfo = inputVector[1]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
outInfo->CopyEntry(sourceInfo,
vtkStreamingDemandDrivenPipeline::TIME_STEPS());
outInfo->CopyEntry(sourceInfo,
vtkStreamingDemandDrivenPipeline::TIME_RANGE());
outInfo->Set(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT(),
inInfo->Get(vtkStreamingDemandDrivenPipeline::WHOLE_EXTENT()),
6);
outInfo->Set(vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES(),
inInfo->Get(
vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES()));
// Special case for ParaView.
if (this->SpatialMatch == 2)
{
outInfo->Set(
vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES(),
sourceInfo->Get(
vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES()));
}
if (this->SpatialMatch == 1)
{
int m1 =
inInfo->Get(vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES());
int m2 =
sourceInfo->Get(
vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES());
if (m1 < 0 && m2 < 0)
{
outInfo->Set(vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES(),
-1);
}
else
{
if (m1 < -1)
{
m1 = VTK_LARGE_INTEGER;
}
if (m2 < -1)
{
m2 = VTK_LARGE_INTEGER;
}
if (m2 < m1)
{
m1 = m2;
}
outInfo->Set(vtkStreamingDemandDrivenPipeline::MAXIMUM_NUMBER_OF_PIECES(),
m1);
}
}
return 1;
}
//----------------------------------------------------------------------------
int vtkProbeFilter::RequestUpdateExtent(
vtkInformation *vtkNotUsed(request),
vtkInformationVector **inputVector,
vtkInformationVector *outputVector)
{
// get the info objects
vtkInformation *inInfo = inputVector[0]->GetInformationObject(0);
vtkInformation *sourceInfo = inputVector[1]->GetInformationObject(0);
vtkInformation *outInfo = outputVector->GetInformationObject(0);
int usePiece = 0;
// What ever happend to CopyUpdateExtent in vtkDataObject?
// Copying both piece and extent could be bad. Setting the piece
// of a structured data set will affect the extent.
vtkDataObject* output = outInfo->Get(vtkDataObject::DATA_OBJECT());
if (output &&
(!strcmp(output->GetClassName(), "vtkUnstructuredGrid") ||
!strcmp(output->GetClassName(), "vtkPolyData")))
{
usePiece = 1;
}
inInfo->Set(vtkStreamingDemandDrivenPipeline::EXACT_EXTENT(), 1);
if ( ! this->SpatialMatch)
{
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(), 0);
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(), 1);
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(), 0);
}
else if (this->SpatialMatch == 1)
{
if (usePiece)
{
// Request an extra ghost level because the probe
// gets external values with computation prescision problems.
// I think the probe should be changed to have an epsilon ...
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()));
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()));
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS())+1);
}
else
{
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT()), 6);
}
}
if (usePiece)
{
inInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()));
inInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()));
inInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS()));
}
else
{
inInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_EXTENT()), 6);
}
// Use the whole input in all processes, and use the requested update
// extent of the output to divide up the source.
if (this->SpatialMatch == 2)
{
inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(), 0);
inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(), 1);
inInfo->Set(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(), 0);
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_PIECE_NUMBER()));
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_PIECES()));
sourceInfo->Set(
vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS(),
outInfo->Get(vtkStreamingDemandDrivenPipeline::UPDATE_NUMBER_OF_GHOST_LEVELS()));
}
return 1;
}
//----------------------------------------------------------------------------
void vtkProbeFilter::PrintSelf(ostream& os, vtkIndent indent)
{
vtkDataObject *source = this->GetSource();
this->Superclass::PrintSelf(os,indent);
os << indent << "Source: " << source << "\n";
os << indent << "SpatialMatch: " << ( this->SpatialMatch ? "On" : "Off" ) << "\n";
os << indent << "ValidPointMaskArrayName: " << (this->ValidPointMaskArrayName?
this->ValidPointMaskArrayName : "vtkValidPointMask") << "\n";
os << indent << "ValidPoints: " << this->ValidPoints << "\n";
}
|