Hello everyone!</br>
I've tried to find an answer to my problem in the forum for quite some time now but I cannot seem to find a solution.</br>
I have an unstructured hexahedral grid that stores one tensor per cell. What I need in my application though is a regular</br>grid so I would like to regularly sample the field.</br>
So far, this is what I am trying to (see code below).</br>
In one of the posts here I have read that vtkProbeFilter will produce output that corresponds to the input so I am</br>using a structured grid as input for which I have computed points.</br>
And while I manage to retreive a structured grid from the <i>probeFilter</i>, the variable <i>tensors</i> ends up being a nullptr.
</br>
</br>
<code>
auto reader = vtkUnstructuredGridReader::New();
</br>
reader->SetFileName(file_.get().c_str());
</br>
reader->Update();
</br>
auto unstructuredGrid = reader->GetOutput();
</br>
</br>
// Create a grid of points to interpolate over
</br>
auto gridSize = glm::ivec3(32, 32, 32);
</br>
vtkSmartPointer<vtkPoints> gridPoints =</br>
 vtkSmartPointer<vtkPoints>::New();
</br>
</br>
for (int x = 0; x < gridSize.x; x++) {</br>
 for (int y = 0; y < gridSize.y; y++) {</br>
  for (int z = 0; z < gridSize.z; z++) {</br>
   gridPoints->InsertNextPoint(x, y, z);</br>
  }</br>
 }</br>
}</br>
</br>
// Create a dataset from the grid points</br>
vtkSmartPointer<vtkStructuredGrid> pointSet =</br>
 vtkSmartPointer<vtkStructuredGrid>::New();</br>
pointSet->SetDimensions(glm::value_ptr(gridSize));</br>
pointSet->SetPoints(gridPoints);</br>
</br>
vtkSmartPointer<vtkProbeFilter> probeFilter =</br>
 vtkSmartPointer<vtkProbeFilter>::New();</br>
probeFilter->SetSourceData(unstructuredGrid);</br>
</br>
probeFilter->SetInputData(pointSet);</br>
</br>
probeFilter->Update();</br>
</br>
auto structuredGrid = probeFilter->GetStructuredGridOutput();</br>
</br>
auto pointData = structuredGrid->GetPointData();</br>
auto tensors = structuredGrid->GetPointData()->GetTensors();
</code>

        
        
        
<br/><hr align="left" width="300" />
Sent from the <a href="http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html">VTK - Users mailing list archive</a> at Nabble.com.<br/>