AttributeError: module 'sensor_msgs.point_cloud2' has no attribute 'pointcloud2_to_xyz_array
时间: 2023-12-05 12:05:32 浏览: 198
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是因为在调用 `pointcloud2_to_xyz_array` 函数时,使用了错误的模块名称。请检查你的代码,确保正确地导入了 `sensor_msgs.point_cloud2` 模块,并且使用了正确的函数名称。如果你确定这些都正确,那可能是该函数已经被移除或者重命名了。你可以查看文档或者源代码来确认函数名称是否正确。
阅读全文