In this tutorial, you will learn how to convert a point cloud to a 3D model using the open source software CloudCompare. This skill will allow you to turn raw point cloud data into mesh files you can then use in your Ignition simulations.
Prerequisites
First, you’ll need to have a point cloud already imported. You can download the tunnel point cloud used in this tutorial by clicking this direct download link. The file is around 100MB; unzip it after downloading.
Next, you’ll need to download CloudCompare. This is the software we will be using to convert our point cloud to a mesh. CloudCompare is free and open source. You can download it here.
Converting with CloudCompare
After installing, open CloudCompare and import your point cloud file by going to File
> Open
. Depending on the number of points in your point cloud, this could take several minutes. Once loaded, you should see the following tunnel section:
Many 3D scans will be composed of millions, sometimes hundreds of millions of points. Converting a scan to a 3D model with that many points would be very difficult due to the number of polygons that would be created and the long processing time necessary to compute the normals.
To solve this, you would need to reduce the number of points to something that will be easier for the software to convert and give us a 3D model with a polygon count that will be able to be loaded into other software.
Our sample is a relatively small 7.9 million points, which is manageable. We'll still walk through reducing points, however, to make the process quicker.
Reduce Points
To reduce the number of points in your cloud, click on the tunnel so a yellow cube outline appears around it, then go to Edit
> Subsample
.
The number you will need to enter in the min. space between points
field will vary depending on your point cloud. A value of .01 was sufficient to bring our point cloud to an easy-to-manage 1 million points. Point count is visible in the Properties
window on the lower left side of the screen.
How many points you reduce down to will largely depend on how long you are willing to wait for the point cloud to be converted into a mesh. The more points you start with, the longer it will take to compute the normals and create the mesh.
After the operation is complete you’ll have two clouds in your scene: the original point cloud and your subsampled point cloud. Most operations in CloudCompare will create new point clouds and keep the original, so make sure that you have the new point cloud selected before running an operation.
Create a Polygonal Mesh
Now we have a point cloud with nearly 1 million points instead of 7 million. However, right now our point cloud is just a bunch of points in space. In order to create a polygonal mesh from this point cloud we will need to compute the normals. A normal is essentially the direction a polygon is facing. To do this, go to Edit
> Normals
> Compute
. You'll see this dialog box:
You’ll see various options in the dialog box that appears. The main thing you’ll want to consider is what Local surface model
to use. Plane
is good with noise but not very good with sharp edges. Triangulation
is the opposite: it is good with sharp edges but not noise. Quadric
is good for smooth, curvy surfaces. In our case, we want to keep some of the jaggedness of the rocky surfaces in our tunnel so we’re going to go with the Triangulation
surface model.
Now we get to actually convert our point cloud to a mesh. To do this go to Plugins
> PoissonRecon
. You'll see this dialog box:
The value you enter in the Octree depth
field will determine the polygon count of the created model. You may have to run the surface reconstruction a couple times with varying values before you land on a polygon count that is suitable for your needs. The “right” polygon count will be determined by how the object will be used in a scene. Environments will likely be over a million polygons while individual objects should be a few thousand.
We’ll also want to make sure we check the box for output density as SF
. This will create a scalar field for us which will be useful in the next step.
After reconstruction, you can see polygon count (Faces
) in the mesh's Properties
window.
Trim Excess Polygons
Our mesh has now been created. A value of 11 has given us 1.7 million faces. We have a problem however. Our tunnel has turned into a blob shape. This is because the mesh that CloudCompare creates will always be water tight even if it has to add polygons where there are no points. We just want our tunnels, though, so we need to remove those unnecessary polygons.
<img src="https://raw.githubusercontent.com/gazebosim/gz-sim/983d50937cbcaa75c790515b2ec5797fe82f1188/tutorials/files/point_cloud_to_mesh/blob2.png" alt="The "blob shape""/>
This is where our scalar field comes in. In the mesh's Properties
window go to SF display params
and take the left handle in the graph and drag it to the right until it hits the area where the bulk of the scalar field starts.
This will display only the polygons that were created from the point cloud and hide the polygons used to make the model watertight. The polygons are only hidden however. We still need to actually remove them.
To remove the hidden polygons go to Edit
> Scalar fields
> Filter By Value
.
A dialog box will appear with the Range
values automatically entered based on what we entered in our SF display params
. Hitting export will simply export the mesh within that range. Instead, we'll hit Split
to create two meshes. One with the polygons inside our specified range and one containing polygons outside that range.
The Completed Model
By hitting Split
we can view the model before exporting by simply going to File
> Save
. Remember to have the correct mesh selected (<mesh_name>.part
) since choosing Split
will give you two new meshes, plus you will still have your original, complete mesh. Your file format will depend on the software you want to use but .obj
is a widely supported format that should work in most 3D applications.
You can find more information on CloudCompare and a more in depth look at the tools we used in this tutorial on the CloudCompare website and the CloudCompare wiki.