运行的代码如下:
import open3d
import numpy as np
pcd = open3d.geometry.PointCloud()
np_points = np.random.rand(100,3)
pcd.points = open3d.utility.Vector3dVector(np_points)
open3d.visualization.draw_geometries([pcd.points])
报错如下:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-40-8343a9238af4> in <module>(


5643

被折叠的 条评论
为什么被折叠?



