显示设置

  1. import numpy as np
  2. # 保证所有数据能够显示,而不是用省略号表示,np.inf表示一个足够大的数
  3. np.set_printoptions(threshold = np.inf)
  4. # 若想不以科学计数显示:
  5. np.set_printoptions(suppress = True)

图像

1、图像转换为矩阵
matrix = numpy.asarray(image)
2、矩阵转换为图像
image = Image.fromarray(matrix)

random 模块

https://www.cnblogs.com/zuoshoushizi/p/8727773.html