# Generated by pandoc-plot 1.8.0
import matplotlib.pyplot as plt
import numpy as np

np.random.seed(2019)

from skued import diffread
from pathlib import Path

im = diffread(Path("images") / "mnxc" / "Cr_1.tif")

fig, ax = plt.subplots(1, 1)
ax.imshow(im, vmin=0, vmax=200, cmap='inferno')
ax.axis('off')
plt.tight_layout()
Click here to see how this plot was generated.