从 realsense API 或 Open3D 库可视化点云

Posted

技术标签:

【中文标题】从 realsense API 或 Open3D 库可视化点云【英文标题】:visualizing the pointcloud from realsense API or Open3D library 【发布时间】:2021-01-28 02:04:16 【问题描述】:

我有一个来自英特尔实感摄像头的深度帧,我想将其转换为点云并可视化点云。到目前为止,至于仅在给定深度帧和相机内在函数的情况下创建点云,我发现了以下两个函数,但是我似乎无法找到一种方法来可视化其中一个或将它们存储为 .ply 文件。

我应该如何可视化以这种方式制作的点云?

方法一:

pointcloud = convert_depth_frame_to_pointcloud(original_depth_frame, color_intrinsics)

其中convert_depth_frame_to_pointcloud 是来自RealSense 的helper function。

使用 Open3D 库的方法 2:

pcd = o3d.geometry.PointCloud.create_from_depth_image(original_depth_frame, color_intrinsics)
pcd.transform([[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]])
print(np.asarray(pcd.points)[1, :])  
o3d.visualization.draw_geometries([pcd])

另外,在使用 o3d 时,我收到此错误:

create_from_depth_image(): incompatible function arguments. The following argument types are supported:
    1. (depth: open3d::geometry::Image, intrinsic: open3d.cuda.pybind.camera.PinholeCameraIntrinsic, extrinsic: numpy.ndarray[float64[4, 4]] = array([[1., 0., 0., 0.],
       [0., 1., 0., 0.],
       [0., 0., 1., 0.],
       [0., 0., 0., 1.]]), depth_scale: float = 1000.0, depth_trunc: float = 1000.0, stride: int = 1, project_valid_depth_only: bool = True) -> open3d.cuda.pybind.geometry.PointCloud

这里读取的是 original_depth_frame:

frame = cv2.imread(os.path.join(args.depth_input_dir, imgs_dir[frame_idx]), cv2.IMREAD_ANYDEPTH)

其中一张深度图像是这样的:

000248.png PNG 1280x720 1280x720+0+0 16-bit Grayscale Gray 567278B 0.000u 0:00.000

color_intrinsics 是:

def set_intrinsics(intrinsics_dict):
    intrinsics = rs.intrinsics()
    intrinsics.width = intrinsics_dict['width']
    intrinsics.height = intrinsics_dict['height']
    intrinsics.ppx = intrinsics_dict['ppx']
    intrinsics.ppy = intrinsics_dict['ppy']
    intrinsics.fx = intrinsics_dict['fx']
    intrinsics.fy = intrinsics_dict['fy']
    intrinsics.model = intrinsics_dict['model']
    intrinsics.coeffs = intrinsics_dict['coeffs']
    return intrinsics
color_intrinsics = set_intrinsics(camera['color_intrinsics'])

如果我不使用 opencv 读取深度图像,我可以使用 open3d 创建 PNG 格式的点云(但是我需要将其作为代码的一部分)。

import open3d as o3d
import matplotlib.pyplot as plt
import numpy as np

raw_depth = o3d.io.read_image('depth_images/000248.png')
pcd = o3d.geometry.PointCloud.create_from_depth_image(raw_depth, 
o3d.camera.PinholeCameraIntrinsic(
                                  o3d.camera.PinholeCameraIntrinsicParameters.PrimeSenseDefault)
                                , np.identity(4), depth_scale=1000.0, depth_trunc=1000.0)
pcd.transform([[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]])
print(np.asarray(pcd.points)[1,:])
o3d.visualization.draw_geometries([pcd])

^^ 上面的代码生成了一个 3D 点云。

【问题讨论】:

【参考方案1】:

您需要阅读您的图片,如下所示:

import open3d as o3d
import matplotlib.pyplot as plt
import numpy as np

raw_depth = o3d.io.read_image('depth_images/000248.png')
pcd = o3d.geometry.PointCloud.create_from_depth_image(raw_depth, 
o3d.camera.PinholeCameraIntrinsic(
                                  o3d.camera.PinholeCameraIntrinsicParameters.PrimeSenseDefault)
                                , np.identity(4), depth_scale=1000.0, depth_trunc=1000.0)
pcd.transform([[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]])
print(np.asarray(pcd.points)[1,:])
o3d.visualization.draw_geometries([pcd])

【讨论】:

以上是关于从 realsense API 或 Open3D 库可视化点云的主要内容,如果未能解决你的问题,请参考以下文章

从 intel realsense 到 matlab 的 RGBa 图像

Realsense SDK 绘制 3D 扫描边界

Intel Realsense D435 python 从深度相机realsense生成pcl点云

RealSense SDK 2.0 没有骨骼数据?

为啥我无法从 RealSense 中看到正确的深度图像

如何在realsense D435中完全关闭深度传感器?