You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I've been searching for what I could be doing wrong for a while, but can't get the point cloud creation from rgbd to work. I have captured rgb and depth frames from realsense D455 cameras and stored them as png and now using them to create a point cloud. Below are the details:
`# Function to load RGB and depth images and convert to point cloud
def create_point_cloud(rgb_image_path, depth_image_path, intrinsic):
if not os.path.exists(rgb_image_path) or not os.path.exists(depth_image_path):
print(f"Error")
exit()
pranman11
changed the title
No point cloud created and code exists without error for create_from_rgbd_image
No point cloud/white screen created for o3d.geometry.PointCloud.create_from_rgbd_image
Jan 17, 2025
Checklist
main
branch).My Question
Hello, I've been searching for what I could be doing wrong for a while, but can't get the point cloud creation from rgbd to work. I have captured rgb and depth frames from realsense D455 cameras and stored them as png and now using them to create a point cloud. Below are the details:
`# Function to load RGB and depth images and convert to point cloud
def create_point_cloud(rgb_image_path, depth_image_path, intrinsic):
if not os.path.exists(rgb_image_path) or not os.path.exists(depth_image_path):
print(f"Error")
exit()
intrinsic = o3d.camera.PinholeCameraIntrinsic(
width=480, height=640, fx=384.0992736816406, fy=383.57464599609375, cx=320.2293395996094, cy=245.76773071289062)`
OUTPUT:
The rgbd images and the pointcloud are created as well but the visualizer displays an empty white screen.
The text was updated successfully, but these errors were encountered: