Page 1 of 1

Simplification of stl mesh

Posted: Mon Aug 31, 2020 6:56 am
by Gori Jagrati
Hi, I am working on pre processing large STL model.
The problem: I need to reduce the number of triangle mesh to render it quick enough. The current count is several thousands of triangles. It would be good to have half of that. How can I do that?
Help please

Re: Simplification of stl mesh

Posted: Tue Sep 01, 2020 4:11 am
by nickz
Hello Gori
Not immediately, unfortunately. We have MeshLab (VCGLib) integrated, but only small part of it exposed via the interface. We are too busy changing the world :) We do it mostly on requests.
My suggestions for Do It Yourself option:
- Look up an algorithm on the web and code it on application level. Mesh related interfaces would be handy there
- As a top of the head very basic option is to extract only vertices which are at least fixed distance form each other. Browsing mesh via adjacent triangles is demoed in Morph sample and rebuild the surface using method demoed in Cloud sample

Thank you for a good question