您好,我正在尝试在 Python 中使用点云库,因为我是这个 C++ 库和 Python 的新手,所以我正在关注http://strawlab.github.io/python-pcl/#pcl.PointCloud上的教程
但是,每当我尝试导入 pcl 并定义一个模块时,例如pcl.PointCloud()
我都会收到以下错误;
AttributeError: 'module' object has no attribute 'PointCloud'
我曾经sys.path.append
指向安装 PCL 文件的正确目录,因为它们不在站点包中。它在上面的链接上说 C++ 代码已经获得了 Python 绑定,但我不确定我要在 Python 中调用哪些文件。有谁知道如何克服这个错误并加载这些模块?
谢谢,安德鲁