Note
Go to the end to download the full example code.
3.3.11.2. Displaying a simple imageΒΆ
Load and display an image
import matplotlib.pyplot as plt
from skimage import data
camera = data.camera()
plt.figure(figsize=(4, 4))
plt.imshow(camera, cmap="gray", interpolation="nearest")
plt.axis("off")
plt.tight_layout()
plt.show()
Total running time of the script: (0 minutes 0.073 seconds)