<div dir="ltr">The reader will produce different types of data dependent on the file it reads, so you need to use GetOutputDataObject instead and cast appropriately.<div><br><div><br></div></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 Sun, Dec 13, 2015 at 7:36 AM, Nico Schlömer <span dir="ltr"><<a href="mailto:nico.schloemer@gmail.com" target="_blank">nico.schloemer@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi everyone,<div><br></div><div>I've been using the `vtkUnstructuredGridReader` and the `vtkXMLUnstructuredGridReader` for a while now to read VTK/VTU meshes, e.g.,</div><div>```</div><div><div>        reader = vtk.vtkUnstructuredGridReader()</div><div>        reader.SetFileName(filename)</div><div>        reader.Update()</div><div>        vtk_mesh = reader.GetOutput()</div></div><div>```</div><div>and then</div><div>```</div><div><div>    points = vtk.util.numpy_support.vtk_to_numpy(</div><div>            vtk_mesh.GetPoints().GetData()</div><div>            )</div></div><div>```</div><div>etc. From the documentation, it seemed easy enough to phase in the `vtkXdmfReader`. However,</div><div>```</div><div><div>AttributeError: 'vtkIOXdmf2Python.vtkXdmfReader' object has no attribute 'GetOutput'</div></div><div>```</div><div>Any hints on how to use the `vtkXdmfReader`?</div><div><br></div><div>Cheers,</div><div>Nico</div><div><br></div><div>[1] <a href="http://www.vtk.org/doc/nightly/html/classvtkXdmfReader.html" target="_blank">http://www.vtk.org/doc/nightly/html/classvtkXdmfReader.html</a><br></div></div>
<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>
<br></blockquote></div><br></div>