summaryrefslogtreecommitdiff
path: root/doc/source/user/plot_gray.py
blob: 6cb46bbe461d593fc0fc81947f30528c0da27be7 (plain)
1
2
3
4
5
6
7
8
from scipy import misc
import matplotlib.pyplot as plt
import numpy as np

img = misc.face()
img_array = img / 255
img_gray = img_array @ [0.2126, 0.7152, 0.0722]
plt.imshow(img_gray, cmap="gray")