Horje
create point cloud from rgbd image in open3d v0.10 Code Example
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)




C

Related
imprimir matriz Code Example imprimir matriz Code Example
Firebase Connecting with ESP8266 Code Example Firebase Connecting with ESP8266 Code Example
set all pins as output for loop Code Example set all pins as output for loop Code Example
argparse allow line break Code Example argparse allow line break Code Example
mysql yyyymm format Code Example mysql yyyymm format Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11