import open3d as o3dimport numpy as npvoxel_grid = o3d.geometry.VoxelGrid.create_from_point_cloud(pcd, voxel_size=0.05)
In this result, how can I found the coordinates of voxel_grid
?
import open3d as o3dimport numpy as npvoxel_grid = o3d.geometry.VoxelGrid.create_from_point_cloud(pcd, voxel_size=0.05)
In this result, how can I found the coordinates of voxel_grid
?