Guest User

Untitled

a guest
May 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. import imageio
  2. import matplotlib.pyplot as plt
  3.  
  4. # Load the image
  5. image = imageio.imread('color_flower.jpg')
  6.  
  7. # Display the image
  8. plt.imshow(image)
  9. plt.show()
Add Comment
Please, Sign In to add comment