You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Open3D |https://www.open3d.org/| Example Open3D scripts: [Link](https://github.com/naturerobots/open3d_scripts)| yes |
73
72
| meshlab |https://www.meshlab.net/|| yes |
73
+
| Open3D |https://www.open3d.org/| Example Open3D scripts: [Link](https://github.com/naturerobots/open3d_scripts)| yes |
74
74
75
75
76
76
#### LVR2
@@ -108,6 +108,56 @@ Some important parameters are:
108
108
There are more parameters that influence the way lvr2 is reconstructing surfaces from point clouds.
109
109
My advise is to just test them and see what changes.
110
110
111
+
112
+
#### Meshlab
113
+
114
+
MeshLab is an open-source software designed for processing and editing 3D triangular meshes, widely used for reconstructing surfaces from point clouds.
115
+
It supports various algorithms to convert unstructured point clouds into coherent triangular meshes, such as Poisson surface reconstruction, and Marching Cubes.
116
+
117
+
Further resources:
118
+
- "Meshing Point Clouds": [https://meshlabstuff.blogspot.com/2009/09/meshing-point-clouds.html](https://meshlabstuff.blogspot.com/2009/09/meshing-point-clouds.html)
119
+
120
+
#### Open3D
121
+
122
+
Open3D is a versatile open-source library for 3D data processing that provides tools for surface reconstruction from point clouds using methods like Poisson reconstruction and alpha shapes. The following example showcases the usage of the python API to Poission reconstruction to extract surfaces:
123
+
124
+
```python
125
+
import open3d as o3d
126
+
import sys
127
+
128
+
# parameters for normal estimation for each point in PCD
129
+
ne_max_radius =0.1# choose this dependent on the scale and density of your PCD
130
+
ne_max_nn =30# choose this dependent on density of your PCD
131
+
132
+
# parameters for poission reconstruction
133
+
possion_depth =11# the higher the more details, the more RAM is used
134
+
density_filter =0.05# filter surface patches with low 'evidence'
135
+
136
+
# This script reconstructs surfaces from a point cloud using Poisson Surface reconstruction
Further examples can be inferred from the official Open3D documention page: [https://www.open3d.org/docs/release/](https://www.open3d.org/docs/release/).
160
+
111
161
## Optimization
112
162
113
163
After we generated a mesh using SLAM approaches, it often has a high resolution; normally, exactly as high as the internal voxel representation.
0 commit comments