Loading a Tiff Image#

This example shows how to load a tiff file into a numpy array.

loading tiff
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)

Gallery generated by Sphinx-Gallery