Last active
January 8, 2025 08:32
-
-
Save cyfinfaza/8f2ce3e7dccb0917b3d73f23b9b3b342 to your computer and use it in GitHub Desktop.
image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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