Answers for "is open3d using the power of gpu on mac?"

C
0

create point cloud from rgbd image in open3d v0.10

import open3d as o3d

print("Read Redwood dataset")
color_raw = o3d.io.read_image("../../TestData/RGBD/color/00000.jpg")
depth_raw = o3d.io.read_image("../../TestData/RGBD/depth/00000.png")
rgbd_image = o3d.geometry.RGBDImage.create_from_color_and_depth(
    color_raw, depth_raw)
print(rgbd_image)
Posted by: Guest on August-18-2020

Code answers related to "C"

Browse Popular Code Answers by Language