<div dir="ltr"><div>You can turn your python programmable source into a standard reader. Then you don't have to edit the script manually as File->Ooen will know how to use it.<br><br></div>For details:<br><a href="http://markmail.org/thread/2pnrmzkbx5n2u3ke">http://markmail.org/thread/2pnrmzkbx5n2u3ke</a><br></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, Apr 22, 2016 at 10:15 AM, Favre  Jean <span dir="ltr"><<a href="mailto:jfavre@cscs.ch" target="_blank">jfavre@cscs.ch</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">




<div bgcolor="#FFFFFF">
<div style="direction:ltr;font-family:Tahoma;color:#000000;font-size:10pt"><br>
my suggestion would be to use some more numpy-oriented features. Your "points" array is already a numpy array, you can feed it to the vtkPolyData with a simple reshaping. Same for your reflectance array. No need for a for-loop<br>
<div><br>
I'd replace your code with this:<br>
<br>
filename = "worked.bin"<br>
<br>
points = load_velodyne_points(filename)<br>
N=points.shape[1]<br>
# use "output" as the pre-defined vtkPolyData object<br>
output.Points = points[0:3,].reshape(N, 3)<br>
output.PointData.append(points[3,], "reflectance")<br>
<div><font size="2"><span style="font-size:10pt">
<div><br>
I usually skip building up cells, because I use a PointGaussian representation mode. But your needs might differ. Anyway, with the changes above, I can read all 3 files without any problem.<br>
<br>
-----------------<br>
Jean<br>
</div>
</span></font></div>
</div>
</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>
Search the list archives at: <a href="http://markmail.org/search/?q=Paraview-developers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=Paraview-developers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/paraview-developers" rel="noreferrer" target="_blank">http://public.kitware.com/mailman/listinfo/paraview-developers</a><br>
<br></blockquote></div><br></div>