puzzlepaint / surfelmeshing

Real-time surfel-based mesh reconstruction from RGB-D video.
BSD 3-Clause "New" or "Revised" License
420 stars 83 forks source link

triangle mesh speed #12

Closed shuochen365 closed 4 years ago

shuochen365 commented 4 years ago

Hi, I found that the speed of triangle mesh for 640 * 480 resolution image is relatively slow. Is there any other way to improve triangle mesh speed besides reducing image resolution.

puzzlepaint commented 4 years ago

You could try tuning the --max_surfels_per_node parameter to perhaps increase the performance slightly, however I would not expect large differences. Other than that, I can't think of any easy and generic changes unfortunately. In some cases, one might for example want to replace the octree with a simple grid for faster spatial access, but that depends on whether the grid would be suitable for the data, and I am also not sure how much effect that would have on the performance.

shuochen365 commented 4 years ago

thank you very much.