MCPcopy Create free account
hub / github.com/SceneFun3D/scenefun3d / pc_downsample

Function pc_downsample

utils/pc_process.py:16–19  ·  view source on GitHub ↗
(pcd_combined, voxel_size=0.005)

Source from the content-addressed store, hash-verified

14
15# Downsamples a point cloud using voxel downsampling
16def pc_downsample(pcd_combined, voxel_size=0.005):
17 downpcd = pcd_combined.voxel_down_sample(voxel_size=voxel_size)
18
19 return downpcd
20
21# estimate normals of a point cloud
22def pc_estimate_normals(pcd, radius = 0.1, max_nn = 16):

Callers 1

combine_point_cloudsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected