2.6.8.1. Displaying a Racoon FaceΒΆ

Small example to plot a racoon face.

plot face
import scipy as sp
import imageio.v3 as iio
f = sp.datasets.face()
iio.imwrite('face.png', f) # uses the Image module (PIL)
import matplotlib.pyplot as plt
plt.imshow(f)
plt.show()

Total running time of the script: ( 0 minutes 0.516 seconds)

Gallery generated by Sphinx-Gallery