Skip to content

Instantly share code, notes, and snippets.

@leepro
Forked from bayerj/gist:4131398
Created August 20, 2014 18:42
Show Gist options
  • Save leepro/6dcb82f0e3989a369e91 to your computer and use it in GitHub Desktop.
Save leepro/6dcb82f0e3989a369e91 to your computer and use it in GitHub Desktop.
from IPython.core.display import Image as image
from PIL import Image
def save_and_display(arr, fname):
pilimg = Image.fromarray(arr)
pilimg.save(fname)
return image(filename=fname, width=600)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment