Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created May 27, 2021 11:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/496ff925d6b4b999ad880982a2722ffc to your computer and use it in GitHub Desktop.
Save amankharwal/496ff925d6b4b999ad880982a2722ffc to your computer and use it in GitHub Desktop.
# Reading an image using Keras
from keras.preprocessing.image import load_img
img = load_img("aman.png")
print(img.format)
print(img.size)
img.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment