本文主要是介绍module ‘open3d‘ has no attribute ‘PointCloud‘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
module ‘open3d‘ has no attribute ‘PointCloud‘
出现该错误的主要原因是新版本的open3d中api做了修改
open3d.PointCloud() 新api
pc = open3d.geometry.PointCloud()
Vector3dVector 新api:
pc.points = open3d.utility.Vector3dVector(pc_xyzrgb[:, 0:3])
open3d.draw_geometries([pc]) 新版api:
open3d.visualization.draw_geometries([pc])
这篇关于module ‘open3d‘ has no attribute ‘PointCloud‘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!