摘要: import numpy as np import PIL.Image as Image from matplotlib import pyplot as plt from matplotlib import cm as CM ax = plt.subplot(121) k = np.random.randn(256,256) plt.imshow(k,cmap=CM.jet) plt.axi... 阅读全文