python读写raw格式、多波段数据

python读raw数据

	filepath=r'lenna.raw'
    data_type='float32'  #根据数据类型填
    rows=1000
    cols=900
    bands=360
    raw_image = np.fromfile(filepath, data_type)#无论什么格式,读取完成,降维成1维数据
    array_3d=raw_image.reshape(rows,bands,cols)#一般是按照(行、波段、列)排列的,如果结果错误,可以换顺序试一下 

python写入raw数据

	data.astype(np.uint8)#调整成需要的格式(data可以是一维的,也可以是(行、波段、列)的数据)
    data.tofile(savepath)

你可能感兴趣的:(python,python,矩阵,图像处理)