<div dir="ltr">Hi,<div>You can use vtkPLYWriter / vtkSTLWriter to convert you file in the desired format.</div><div>Here is a page with examples:</div><div><a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/IO/WritePLY">http://www.vtk.org/Wiki/VTK/Examples/Cxx/IO/WritePLY</a><br></div><div><br></div><div>Thanks,</div><div>Chiranjib</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, May 3, 2017 at 1:30 AM, mozendi <span dir="ltr"><<a href="mailto:mozendi@gmail.com" target="_blank">mozendi@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Dear VTK users,<br>
<br>
I am using VTK to generate a 3D Delaunay triangulation from a list of input<br>
points that are obtained using terrestrial laser scanner. So far, I<br>
successfully generated some 3D triangulations and saved them in vtk or vtu<br>
file formats. However, I need to save them as one of the popular formats<br>
such as .ply, .stl, .obj or .wrl. Could you please tell me how can I save 3d<br>
triangulation in one of these formats? My other question is about setAlpha<br>
and setTolerance parameters, could you please explain me these parameters in<br>
detail?<br>
Thanks in advance<br>
<br>
int main( int argc, char* argv[] )<br>
{<br>
        //load the point cloud<br>
        vtkSmartPointer<<wbr>vtkSimplePointsReader> reader =<br>
vtkSmartPointer<<wbr>vtkSimplePointsReader>::New();<br>
        reader->SetFileName("<a href="http://kucuk50k.xyz" rel="noreferrer" target="_blank">kucuk50k.<wbr>xyz</a>");<br>
        reader->Update();<br>
        vtkPolyData* polydata = reader->GetOutput();<br>
        std::cout << "The point cloud is loaded" << std::endl;<br>
        //end of point cloud loading<br>
        std::cout << "-----------------------------<wbr>-----------------" << std::endl;<br>
        // Generate a mesh from the input points. If Alpha is non-zero, then<br>
        // tetrahedra, triangles, edges and vertices that lie within the<br>
        // alpha radius are output.<br>
        std::cout << "Start delaunay 3d triangulation" << std::endl;<br>
        vtkSmartPointer<vtkDelaunay3D> delaunay3DAlpha =<br>
vtkSmartPointer<vtkDelaunay3D><wbr>::New();<br>
        delaunay3DAlpha-><wbr>SetInputConnection(reader-><wbr>GetOutputPort());<br>
        delaunay3DAlpha->SetAlpha(0.<wbr>01);<br>
        std::cout << "3d Delaunay computed" << std::endl;<br>
        std::cout << "-----------------------------<wbr>-----------------" << std::endl;<br>
        std::cout << "Start writing the triangulation" << std::endl;<br>
        vtkSmartPointer<<wbr>vtkXMLUnstructuredGridWriter> ugWriter =<br>
vtkSmartPointer<<wbr>vtkXMLUnstructuredGridWriter>:<wbr>:New();<br>
        ugWriter->SetInputConnection(<wbr>delaunay3DAlpha-><wbr>GetOutputPort());<br>
        ugWriter->SetFileName("<wbr>delaunayy_50k.vtk");<br>
        ugWriter->Write();<br>
        std::cout << "VTK file created" << std::endl;<br>
        return EXIT_SUCCESS;<br>
}<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/vtk3ddelaunay-save-in-ply-stl-obj-or-wrl-tp5743046.html" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.<wbr>com/vtk3ddelaunay-save-in-ply-<wbr>stl-obj-or-wrl-tp5743046.html</a><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
______________________________<wbr>_________________<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/<wbr>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_<wbr>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=<wbr>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/<wbr>mailman/listinfo/vtkusers</a><br>
</blockquote></div><br></div>