问题 I want to show the coordinates while visualizing a point cloud in open3D with Python. According to the documentation, I wrote the following code, in which the third line is supposed to create a coordinate. (Suppose point_cache is a np.array with shape (442368, 3) ) pcd = o3d.geometry.PointCloud() pcd.points = o3d.utility.Vector3dVector(point_cache) mesh_frame = o3d.geometry.TriangleMesh.create_coordinate_frame(size=0.6, origin=[-2, -2, -2]) o3d.visualization.draw_geometries([pcd, mesh_frame])