<div dir="ltr"><div>Apply the threshold filter to an unstructured grid that contains the 3D elements (voxels and tetrahedrons for example). Polydata can only contain 2D elements (quadrilaterals and triangles for example.) </div><div><br></div><div>Was the polydata produces by an extract surface filter? If so, apply the threshold to whatever you fed into that instead.</div><div><br></div><div>hth</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature">David E DeMarle<br>Kitware, Inc.<br>R&D Engineer<br>21 Corporate Drive<br>Clifton Park, NY 12065-8662<br>Phone: 518-881-4909</div></div>
<br><div class="gmail_quote">On Fri, Jun 26, 2015 at 5:15 AM, madz <span dir="ltr"><<a href="mailto:madaramh@gmail.com" target="_blank">madaramh@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I tried the following method to extract cells from a polydata within a range,<br>
<br>
  vtkSmartPointer<vtkThreshold> threshold =<br>
vtkSmartPointer<vtkThreshold>::New();<br>
#if VTK_MAJOR_VERSION <= 5<br>
  threshold->SetInput(polydata);<br>
#else<br>
  threshold->SetInputData(polydata);<br>
#endif<br>
  threshold->ThresholdBetween(1364623,1598476);<br>
  threshold->SetInputArrayToProcess(0, 0, 0,<br>
vtkDataObject::FIELD_ASSOCIATION_CELLS, "Index1");<br>
  threshold->Update();<br>
<br>
However both this only gives an unstructured grid which displays the outer<br>
cells of the threshold with none of the inside cells.<br>
<br>
How do I get all the cells within the range, and not just the crust.<br>
Thank you.<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/Extract-all-cell-within-range-by-thresholding-tp5732554.html" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.com/Extract-all-cell-within-range-by-thresholding-tp5732554.html</a><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
</blockquote></div><br></div>