Open3D icon indicating copy to clipboard operation
Open3D copied to clipboard

Increase the resolution for Capture_Depth_Point_Cloud

Open Shubham-2302 opened this issue 6 months ago • 0 comments

Checklist

My Question

Hello,

I am trying to convert mesh (.stl) object to point cloud.

     extrinsic = np.array(T_wc)
      camera_params = o3d.camera.PinholeCameraParameters()
      camera_params.intrinsic = params.intrinsic
      camera_params.extrinsic = extrinsic

      # Apply the updated camera parameters to the visualizer
      ctr.convert_from_pinhole_camera_parameters(camera_params,True)
      vis.poll_events()
      vis.update_renderer()

      # Capture the point cloud from the camera's perspective
      vis.capture_depth_point_cloud(pcd_temp_path,True,False)

This is the result I am getting Raytraced_PointCloud_MPP_zoomed_PCDdensity The point cloud is very sparse, I would like to get a more dense point cloud.

For reasons I cannot mention, I cannot use the Ray_casting function from open3d.

What is the way to improve the density of my point cloud using capture_depth_point_cloud or any other post processing methods?

Shubham-2302 avatar Aug 22 '24 22:08 Shubham-2302