I tried the following codes from Working with TIFFs (import, export) in Python using numpy :
from PIL import Image
im = Image.open('Park_Falls.tif')
im.show()
AND
import matplotlib.pyplot as plt
im = plt.imread('Park_Falls.tif')
print im
But both didnt work for me.
IOError: cannot identify image file <open file 'Park_Falls.tif', mode 'rb' at 0x0000000022FB71E0>
Why? Is it because the TIFF image is too large (292 MB after unzipping) in size?
Image taken from here (Park_Falls.zip)