In [8]:
from matplotlib import pyplot as plt
from PIL import Image
import tools as to
%matplotlib inline
In [9]:
plt.figure(1)
img = Image.open("flipped_img.tiff")
data = to.converter("flipped_img.tiff")
plt.imshow(data)
Out[9]:
In [ ]: