Skip to content

Instantly share code, notes, and snippets.

@cyfinfaza
Last active July 26, 2021 19:09
Show Gist options
  • Save cyfinfaza/8f2ce3e7dccb0917b3d73f23b9b3b342 to your computer and use it in GitHub Desktop.
Save cyfinfaza/8f2ce3e7dccb0917b3d73f23b9b3b342 to your computer and use it in GitHub Desktop.
image
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread('your_image.png')
imgplot = plt.imshow(img)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment