File "rs_to_open3d.py", line 19, in <module> point cloud = Point Cloud() NameError: name 'PointCloud' is not defined

C
To solve that you should change it like this:

import open3d as o3d
pcd = o3d.geometry.PointCloud()
Source

Also in C: