RealSense RGB-Depth Camera Tutorial 02
Contents
I hope this note could finally solve the Point Cloud Segmentation + YOLO
Key Code
|
|
Notes
points = rs.points()
: Extends the frame class with additional point cloud related attributes and functions.
points.get_vertices(dim=2)
: Retrieve the vertices of the point cloud
o3d.utility.Vector3dVector(vertices_interest)
: Convert float64 numpy array of shape (n, 3) to Open3D format, 3 means x,y,z