使用随机数生成图片
#0-255生成jpg
s1=np.random.randint(0,255,(456, 730),dtype=int)
s1
plt.imshow(s1)
#0-1生成png
s2=np.random.random((22,55,3))
s2
plt.imshow(s2)
彩色:
s=np.random.randint(0,255,(300,400,3),dtype = np.uint8)
plt.imshow(s)
黑色:
import numpy as np
img = np.zeros(shape = (300,400,3),dtype = np.uint8)
img
# 数据没有波动
plt.imshow(img)