pye57
Python 包装器,用于读写 .e57 点云文件
示例用法
import numpy as np
import pye57
e57 = pye57 . E57 ( "e57_file.e57" )
# read scan at index 0
data = e57 . read_scan ( 0 )
# 'data' is a dictionary with the point types as keys
assert isinstance ( data [ "cartesianX" ], np . ndarray )
assert isinstance ( data [ "cartesianY" ], np . ndarray )
assert isinstance ( data [ "cartesianZ" ], np . ndarray )
# other attr
1