python读取BMP文件
struct用来处理二进制流数据import structa=12bytes=struct.pack('i',a)a1,=struct.unpack('i',bytes)print(bytes)print(a1)上面的struct.unpack可以用int.from_bytes来处理得到相同的效果。下面的方法我采用这种方法。import numpy as npimport structimport matplotlib.pyplot as pltf = open('lena.B
原创
2020-11-22 21:53:38 ·
5126 阅读 ·
0 评论