This is my code
from PIL import Image pil_im = Image.open(\'data/empire.jpg\')
I would like to do some image manipulation on it, and then s
In order to simply visualize the image in a notebook you can use display()
%matplotlib inline from PIL import Image im = Image.open(im_path) display(im)