Note
Go to the end to download the full example code.
Loading a Tiff Image#
This example shows how to load a tiff file into a numpy array.

from matplotlib import pyplot as plt
from ripplemapper.data.example import example_data
from ripplemapper.io import load_image
img = load_image(example_data[-1])
plt.imshow(img)
plt.show()
Total running time of the script: (0 minutes 0.050 seconds)