MarvinChung / Orbeez-SLAM

GNU General Public License v3.0
262 stars 29 forks source link

A question about the dense point clouds. #10

Open ShilangChen1011 opened 1 year ago

ShilangChen1011 commented 1 year ago

This is a good job. I have some questions while reading the paper and the code. The paper says that it can generate dense point clouds, but I don’t see any direct generation of dense point clouds in the code. There is a part about generating mesh. Is the dense point cloud you mentioned the same as the mesh you generated? Thanks!

MarvinChung commented 1 year ago

Hello, you can analyze the code within the "update_density_grid_nerf" function by following this link:

update_density_grid_nerf

This function determines which voxels in the density grid should be considered as a surface. It then checks whether the voxel satisfies the specified threshold and samples a point from the voxel to generate a dense point cloud.

You can find this part of the code here:

generate_grid_map_points_nerf_nonuniform