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
|
// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
// SPDX-License-Identifier: BSD-3-Clause
#include "vtkPointSetToOctreeImageFilter.h"
#include "vtkArrayDispatch.h"
#include "vtkAtomicMutex.h"
#include "vtkCellData.h"
#include "vtkDataArrayRange.h"
#include "vtkFloatArray.h"
#include "vtkImageData.h"
#include "vtkInformation.h"
#include "vtkInformationVector.h"
#include "vtkObjectFactory.h"
#include "vtkPartitionedDataSet.h"
#include "vtkPointData.h"
#include "vtkPointSet.h"
#include "vtkSMPTools.h"
#include "vtkUnsignedCharArray.h"
#include <mutex>
VTK_ABI_NAMESPACE_BEGIN
//------------------------------------------------------------------------------
vtkStandardNewMacro(vtkPointSetToOctreeImageFilter);
//------------------------------------------------------------------------------
vtkPointSetToOctreeImageFilter::vtkPointSetToOctreeImageFilter()
{
this->SetInputArrayToProcess(
0, 0, 0, vtkDataObject::FIELD_ASSOCIATION_POINTS, vtkDataSetAttributes::SCALARS);
}
//------------------------------------------------------------------------------
vtkPointSetToOctreeImageFilter::~vtkPointSetToOctreeImageFilter() = default;
//------------------------------------------------------------------------------
void vtkPointSetToOctreeImageFilter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "NumberOfPointsPerCell: " << this->NumberOfPointsPerCell << endl;
os << indent << "ProcessInputPointArray: " << this->ProcessInputPointArray << endl;
os << indent << "ComputeLastValue: " << this->ComputeLastValue << endl;
os << indent << "ComputeMin: " << this->ComputeMin << endl;
os << indent << "ComputeMax: " << this->ComputeMax << endl;
os << indent << "ComputeCount: " << this->ComputeCount << endl;
os << indent << "ComputeSum: " << this->ComputeSum << endl;
os << indent << "ComputeMean: " << this->ComputeMean << endl;
}
//------------------------------------------------------------------------------
int vtkPointSetToOctreeImageFilter::FillInputPortInformation(
int vtkNotUsed(port), vtkInformation* info)
{
info->Set(vtkAlgorithm::INPUT_REQUIRED_DATA_TYPE(), "vtkPointSet");
return 1;
}
//------------------------------------------------------------------------------
template <typename TPointsArray>
struct vtkPointSetToOctreeImageFilter::PointSetToImageFunctor
{
vtkPointSet* Input;
vtkImageData* Output;
TPointsArray* Points;
vtkUnsignedCharArray* Octree;
vtkDataArray* InField;
vtkFloatArray* OutField;
const std::vector<FieldFunctions>& Functions;
bool UseFieldArray;
double Origin[3];
double Spacing[3];
double Spacing_2[3];
int Dimensions[3];
int Extent[6];
std::unique_ptr<vtkAtomicMutex[]> Locks;
PointSetToImageFunctor(vtkPointSet* input, vtkImageData* output, TPointsArray* points,
vtkUnsignedCharArray* octree, vtkDataArray* inField, vtkFloatArray* outField,
const std::vector<FieldFunctions>& functions)
: Input(input)
, Output(output)
, Points(points)
, Octree(octree)
, InField(inField)
, OutField(outField)
, Functions(functions)
, UseFieldArray(inField != nullptr)
{
output->GetOrigin(this->Origin);
output->GetSpacing(this->Spacing);
this->Spacing_2[0] = 0.5 * this->Spacing[0];
this->Spacing_2[1] = 0.5 * this->Spacing[1];
this->Spacing_2[2] = 0.5 * this->Spacing[2];
output->GetDimensions(this->Dimensions);
output->GetExtent(this->Extent);
this->Locks =
std::unique_ptr<vtkAtomicMutex[]>(new vtkAtomicMutex[this->Output->GetNumberOfCells()]);
}
void Initialize() {}
void operator()(vtkIdType begin, vtkIdType end)
{
double* origin = this->Origin;
double* spacing = this->Spacing;
double* spacing_2 = this->Spacing_2;
int* dimensions = this->Dimensions;
int* extent = this->Extent;
vtkImageData* output = this->Output;
int numFunctions = static_cast<int>(this->Functions.size());
// no need to iterate over the mean function since it will be computed in the reduce step
if (this->UseFieldArray && this->Functions.back() == FieldFunctions::MEAN)
{
--numFunctions;
}
double outPt[3];
int ijk[3];
vtkIdType outPtId;
vtkIdType outCellId;
unsigned char octreeValue;
float inFieldValue;
const auto inPoints = vtk::DataArrayTupleRange<3>(this->Points);
unsigned char* octree = this->Octree->GetPointer(0);
vtk::detail::ValueRange<vtkDataArray, 1> inField;
vtk::detail::TupleRange<vtkAOSDataArrayTemplate<float>, vtk::detail::DynamicTupleSize> outField;
if (this->UseFieldArray)
{
inField = vtk::DataArrayValueRange<1>(this->InField);
outField = vtk::DataArrayTupleRange(this->OutField);
}
for (vtkIdType i = begin; i < end; ++i)
{
// get point
const auto& inPt = inPoints[i];
// calculate ijk
ijk[0] = static_cast<int>((inPt[0] - origin[0]) / spacing[0]);
ijk[0] = ijk[0] < extent[0] ? extent[0] : (ijk[0] >= extent[1] ? extent[1] - 1 : ijk[0]);
ijk[1] = static_cast<int>((inPt[1] - origin[1]) / spacing[1]);
ijk[1] = ijk[1] < extent[2] ? extent[2] : (ijk[1] >= extent[3] ? extent[3] - 1 : ijk[1]);
ijk[2] = static_cast<int>((inPt[2] - origin[2]) / spacing[2]);
ijk[2] = ijk[2] < extent[4] ? extent[4] : (ijk[2] >= extent[5] ? extent[5] - 1 : ijk[2]);
// calculate output point and cell id
outPtId = ijk[0] + ijk[1] * dimensions[0] + ijk[2] * dimensions[0] * dimensions[1];
outCellId = ijk[0] + ijk[1] * extent[1] + ijk[2] * extent[1] * extent[3];
// get output point
output->GetPoint(outPtId, outPt);
// add half spacing to output point
outPt[0] += spacing_2[0];
outPt[1] += spacing_2[1];
outPt[2] += spacing_2[2];
// calculate scalar octree value
octreeValue = inPt[0] > outPt[0] ? 2 : 1;
octreeValue *= inPt[1] > outPt[1] ? 4 : 1;
octreeValue *= inPt[2] > outPt[2] ? 16 : 1;
std::lock_guard<vtkAtomicMutex> lock(this->Locks[outCellId]);
// this operation is deterministic because we perform a bitwise OR
octree[outCellId] |= octreeValue;
if (this->UseFieldArray)
{
auto outTuple = outField[outCellId];
inFieldValue = static_cast<float>(inField[i]);
for (int j = 0; j < numFunctions; ++j)
{
switch (this->Functions[j])
{
case FieldFunctions::LAST_VALUE:
outTuple[j] = inFieldValue;
break;
case FieldFunctions::MIN:
outTuple[j] = std::min(static_cast<float>(outTuple[j]), inFieldValue);
break;
case FieldFunctions::MAX:
outTuple[j] = std::max(static_cast<float>(outTuple[j]), inFieldValue);
break;
case FieldFunctions::COUNT:
outTuple[j] += 1.0f;
break;
case FieldFunctions::SUM:
outTuple[j] += inFieldValue;
break;
default:
break;
}
}
}
}
}
void Reduce()
{
// Compute mean
if (this->UseFieldArray && this->Functions.back() == FieldFunctions::MEAN)
{
vtkSMPTools::For(0, this->OutField->GetNumberOfTuples(),
[&](vtkIdType begin, vtkIdType end)
{
auto outField = vtk::DataArrayTupleRange(this->OutField, begin, end);
const int numFunctions = static_cast<int>(this->Functions.size());
const int meanIndex = numFunctions - 1;
const int sumIndex = numFunctions - 2;
const int countIndex = numFunctions - 3;
for (auto tuple : outField)
{
if (tuple[countIndex] != 0.0f)
{
tuple[meanIndex] = static_cast<float>(tuple[sumIndex]) / tuple[countIndex];
}
}
});
}
}
};
//------------------------------------------------------------------------------
struct vtkPointSetToOctreeImageFilter::PointSetToImageWorker
{
template <typename TPointsArray>
void operator()(TPointsArray* inPointsArray, vtkUnsignedCharArray* octreeArray,
vtkPointSet* input, vtkImageData* output, vtkDataArray* inField, vtkFloatArray* outField,
const std::vector<FieldFunctions>& functions)
{
PointSetToImageFunctor<TPointsArray> functor(
input, output, inPointsArray, octreeArray, inField, outField, functions);
vtkSMPTools::For(0, input->GetNumberOfPoints(), functor);
}
};
//------------------------------------------------------------------------------
int vtkPointSetToOctreeImageFilter::RequestData(
vtkInformation*, vtkInformationVector** inputVector, vtkInformationVector* outputVector)
{
// get the input
vtkInformation* inInfo = inputVector[0]->GetInformationObject(0);
vtkPointSet* input = vtkPointSet::GetData(inInfo);
// get the output
vtkInformation* outInfo = outputVector->GetInformationObject(0);
vtkPartitionedDataSet* outputPDS = vtkPartitionedDataSet::GetData(outInfo);
if (!input || input->GetNumberOfPoints() == 0)
{
vtkErrorMacro("No input or empty input.");
return 0;
}
if (this->NumberOfPointsPerCell > input->GetNumberOfPoints())
{
vtkErrorMacro("NumberOfPointsPerCell must be less than or equal to the number of points.");
return 0;
}
// get input points information
double pointSetBounds[6];
input->GetBounds(pointSetBounds);
// compute output image information as it's done in vtkStaticPointLocator when Automatic is on.
double imageBounds[6];
int nDivs[3];
vtkIdType numBuckets = static_cast<vtkIdType>(static_cast<double>(input->GetNumberOfPoints()) /
static_cast<double>(this->NumberOfPointsPerCell));
vtkBoundingBox bbox(pointSetBounds);
bbox.ComputeDivisions(numBuckets, imageBounds, nDivs);
const double origin[3] = { imageBounds[0], imageBounds[2], imageBounds[4] };
const double spacing[3] = { (imageBounds[1] - imageBounds[0]) / static_cast<double>(nDivs[0]),
(imageBounds[3] - imageBounds[2]) / static_cast<double>(nDivs[1]),
(imageBounds[5] - imageBounds[4]) / static_cast<double>(nDivs[2]) };
const int dimensions[3] = { 1 + nDivs[0], 1 + nDivs[1], 1 + nDivs[2] };
const vtkIdType numberOfCells = nDivs[0] * nDivs[1] * nDivs[2];
// create output image octree array
vtkNew<vtkUnsignedCharArray> octree;
octree->SetName("octree");
octree->SetNumberOfValues(numberOfCells);
vtkSMPTools::Fill(octree->GetPointer(0), octree->GetPointer(0) + numberOfCells, 0);
// create output image field array
vtkSmartPointer<vtkFloatArray> outField = nullptr;
vtkDataArray* inField = nullptr;
std::vector<FieldFunctions> functions;
if (this->ProcessInputPointArray)
{
inField = this->GetInputArrayToProcess(0, inputVector);
if (!inField)
{
vtkErrorMacro("Array to process is null.");
return 0;
}
if (inField->GetNumberOfTuples() != input->GetNumberOfPoints())
{
vtkErrorMacro("Array to process must have as many tuples as the number of points.");
return 0;
}
if (inField->GetNumberOfComponents() != 1)
{
vtkErrorMacro("Array to process '" << inField->GetName() << "' must have 1 component.");
return 0;
}
int numberOfFunctions = this->ComputeLastValue + this->ComputeMin + this->ComputeMax +
(this->ComputeCount || this->ComputeMean) + (this->ComputeSum || this->ComputeMean) +
this->ComputeMean;
if (numberOfFunctions == 0)
{
vtkErrorMacro("No function has been requested to be computed.");
return 0;
}
functions.resize(static_cast<size_t>(numberOfFunctions));
outField = vtkSmartPointer<vtkFloatArray>::New();
outField->SetName(inField->GetName());
outField->SetNumberOfComponents(numberOfFunctions);
int counter = 0;
if (this->ComputeLastValue)
{
functions[counter] = FieldFunctions::LAST_VALUE;
outField->SetComponentName(counter++, "LastValue");
}
if (this->ComputeMin)
{
functions[counter] = FieldFunctions::MIN;
outField->SetComponentName(counter++, "Min");
}
if (this->ComputeMax)
{
functions[counter] = FieldFunctions::MAX;
outField->SetComponentName(counter++, "Max");
}
if (this->ComputeCount || this->ComputeMean)
{
functions[counter] = FieldFunctions::COUNT;
outField->SetComponentName(counter++, "Count");
}
if (this->ComputeSum || this->ComputeMean)
{
functions[counter] = FieldFunctions::SUM;
outField->SetComponentName(counter++, "Sum");
}
if (this->ComputeMean)
{
functions[counter] = FieldFunctions::MEAN;
outField->SetComponentName(counter++, "Mean");
}
outField->SetNumberOfTuples(numberOfCells);
// initialize output image field array
std::vector<float> defaultValues(functions.size());
for (int i = 0; i < numberOfFunctions; ++i)
{
switch (functions[i])
{
case FieldFunctions::LAST_VALUE:
defaultValues[i] = 0.0f;
break;
case FieldFunctions::MIN:
defaultValues[i] = std::numeric_limits<float>::max();
break;
case FieldFunctions::MAX:
defaultValues[i] = std::numeric_limits<float>::lowest();
break;
case FieldFunctions::COUNT:
defaultValues[i] = 0;
break;
case FieldFunctions::SUM:
defaultValues[i] = 0;
break;
case FieldFunctions::MEAN:
defaultValues[i] = 0;
break;
}
}
vtkSMPTools::For(0, numberOfCells,
[&](vtkIdType begin, vtkIdType end)
{
auto outFieldRange = vtk::DataArrayTupleRange(outField, begin, end);
for (auto outTuple : outFieldRange)
{
std::copy(defaultValues.begin(), defaultValues.end(), outTuple.begin());
}
});
}
// define output image
vtkNew<vtkImageData> output;
output->SetDimensions(dimensions);
output->SetOrigin(origin);
output->SetSpacing(spacing);
output->GetCellData()->SetScalars(octree);
if (inField)
{
output->GetCellData()->AddArray(outField);
}
// add output image to output partitioned dataset
outputPDS->SetNumberOfPartitions(1);
outputPDS->SetPartition(0, output);
// fill octree and field arrays
auto inPointsArray = input->GetPoints()->GetData();
PointSetToImageWorker worker;
using Dispatcher = vtkArrayDispatch::DispatchByValueType<vtkArrayDispatch::Reals>;
if (!Dispatcher::Execute(
inPointsArray, worker, octree, input, output, inField, outField.Get(), functions))
{
worker(inPointsArray, octree, input, output, inField, outField.Get(), functions);
}
return 1;
}
VTK_ABI_NAMESPACE_END
|