上传者: 38740130
|
上传时间: 2021-10-14 23:35:42
|
文件大小: 464KB
|
文件类型: -
我就废话不多说了,大家还是直接看代码吧!
import matplotlib.pyplot as plt
import numpy as np
f = open('bwall.bmpx', mode='rb')
x = np.fromfile(f, dtype=np.ubyte)
#x = x[0:1920]
x = x[1920:3840]
#x = x[3840:5760]
x = x.reshape(60,32)
#print((x))
plt.imshow(x)
plt.axis('off') # clear x- and y-axes
plt.show()
补充知识:Python