extract data from tiff file python code example
Example: open tiff image pyt
>>> from PIL import Image
>>> im = Image.open('a_image.tif')
>>> im.show()
>>> from PIL import Image
>>> im = Image.open('a_image.tif')
>>> im.show()