I am having some difficulty reading in a .vtk file with information regarding points, vertices, scalars, and normals into a contour filter. When I try to connect the /vtkPolyDataReader to /vtkMarchingContourFilter, it does not see any points to draw contours for. I know there are nearly 7k points in the file but I just can not figure out why the contour filters are not seeing the points. Here is the relevant bit of code I am using in case you are interested:<br>
<br><br>  vtkSmartPointer&lt;vtkPolyDataReader&gt; PolyData =<br>    vtkSmartPointer&lt;vtkPolyDataReader&gt;::New();<br>   PolyData-&gt;SetFileName( argv[1] ); <br>   PolyData-&gt;Update();<br><br>   vtkSmartPointer&lt;vtkPolyData&gt; Input  =<br>
     vtkSmartPointer&lt;vtkPolyData&gt;::New();<br>   Input-&gt;ShallowCopy( PolyData-&gt;GetOutput() );<br><br>   vtkSmartPointer&lt;vtkMarchingContourFilter&gt; Extract1 =<br>     vtkSmartPointer&lt;vtkMarchingContourFilter&gt;::New();<br>
   Extract1-&gt;SetInputConnection( Input-&gt;GetProducerPort() );<br>   Extract1-&gt;GenerateValues( atoi( argv[2] ),0,4096 );<br>   std::cout &lt;&lt; std::endl &lt;&lt; &quot;The # of contours is: &quot;;<br>   std::cout &lt;&lt; Extract1-&gt;GetNumberOfContours() &lt;&lt; std::endl &lt;&lt; std::endl;<br>
<br>It has crossed my mind that perhaps creating contours from points is not possible. Does anyone know if that might be true?<br><br>Thank you for your time and help,<br>Luke H<br>