显示设置图像random 模块 显示设置import numpy as np# 保证所有数据能够显示,而不是用省略号表示,np.inf表示一个足够大的数np.set_printoptions(threshold = np.inf)# 若想不以科学计数显示:np.set_printoptions(suppress = True) 图像1、图像转换为矩阵matrix = numpy.asarray(image)2、矩阵转换为图像image = Image.fromarray(matrix) random 模块https://www.cnblogs.com/zuoshoushizi/p/8727773.html