一 画直方图
import matplotlib.pyplot as plt
plt.figure("hist")
arr=images.flatten()
n, bins, patches = plt.hist(arr, bins=256, normed=1,edgecolor='None',facecolor='red')
plt.show()
二 利用subplot画多幅图
import matplotlib.pyplot as plt
plt.figure()
plt.subplot(1,2,1)
plt.imshow(images[i])
plt.subplot(1,2,2)
plt.imshow(maskes[i])
plt.show()