Open3D的 open3d.data.SampleRedwoodRGBDImages
函数提供了Redwood数据集的RGB-D图像样本。其中的 data_root
参数指定了数据集所在的根目录。
data_root
:Redwood数据集所在的根目录,必须是字符串类型。默认为 Open3D/examples/TestData/Redwood
。import open3d as o3d
# 设置数据集根目录
data_root = "/path/to/data_root"
# 加载 Redwood 数据集的 RGB-D 图像样本
color_image = o3d.io.read_image(f"{data_root}/rgb/{frame_id}.png")
depth_image = o3d.io.read_image(f"{data_root}/depth/{frame_id}.png")
rgbd_image = o3d.geometry.RGBDImage.create_from_color_and_depth(color_image, depth_image)
open3d.data.SampleRedwoodRGBDImages
函数时,可以不指定 data_root
参数,使用默认值即可。rgb
和 depth
两个文件夹,分别用于存放 RGB 和深度图像。{frame_id}.png
,其中 frame_id
表示帧序号,从1开始递增。