summaryrefslogtreecommitdiff
path: root/doc/source/user/plot_face.py
blob: c0891e770fefd954a36a6b3066df9126977287a5 (plain)
1
2
3
4
5
from scipy import misc
import matplotlib.pyplot as plt

img = misc.face()
plt.imshow(img)