一、使用示范:
import matplotlib.pyplot as plt
plt.imshow(data.images[0], # 负责对图像进行处理 imge类型:<class ''>
cmap=plt.cm.gray_r, # cmap参数: 为调整显示颜色 gray为黑白色,加_r取反为白黑色
interpolation='nearest')
plt.show() # 显示图片在 pycharm中 使用
import matplotlib.pyplot as plt
plt.imshow(data.images[0], # 负责对图像进行处理 imge类型:<class ''>
cmap=plt.cm.gray_r, # cmap参数: 为调整显示颜色 gray为黑白色,加_r取反为白黑色
interpolation='nearest')
plt.show() # 显示图片在 pycharm中 使用