AttributeError: 'open3d.cpu.pybind.geometry.Octree' object has no attribute 'search_radius_vector_3d'
时间: 2023-08-22 22:44:54 浏览: 81
解决:slate报错 AttributeError: module ‘importlib._bootstrap’ has no attribute ‘SourceFileLoade
这个错误通常是因为你在使用`Octree`对象的时候,调用了一个不存在的属性或方法`search_radius_vector_3d`。请检查你的代码,确保你正确地调用了`Octree`对象的属性和方法,并且这些属性和方法确实存在于该对象中。你可以参考Open3D的官方文档来查看`Octree`对象的属性和方法列表。如果问题仍然存在,请提供更多的上下文信息,以便我更好地理解你的问题。
阅读全文