import laspy
import open3d as o3d
import numpy as np
las = laspy.read("file.laz")当我使用这段代码时,我得到了错误: laspy.errors.LaspyException:没有选择LazBackend,不能解压缩数据
我怎么解决这个问题?
发布于 2022-04-08 09:52:51
laspy网站解释了如何启用.laz文件的文件处理。
https://laspy.readthedocs.io/en/latest/installation.html#
您必须安装两个给定的.laz后端之一。页面顶部是安装示例。
在unix/macOS中,这对我起了作用:
python3 -m pip install "laspy[lazrs,laszip]"确保安装后重新加载python环境。
https://stackoverflow.com/questions/71641718
复制相似问题