width = outlier_cloud.get_extent()[1] AttributeError: 'open3d.cpu.pybind.geometry.PointCloud' object has no attribute 'get_extent'
时间: 2024-05-22 17:17:09 浏览: 143
3D Object Recognition.zip_PCL点云识别_pcl_point cloud_点云_点云 识别
5星 · 资源好评率100%
这个错误是因为在open3d.cpu.pybind.geometry.PointCloud对象上调用了get_extent()方法,但是这个对象并没有这个名为get_extent()的方法。您可以通过检查open3d.cpu.pybind.geometry.PointCloud对象的属性和方法列表,找到可用的方法来获取您需要的信息。
阅读全文