aare/python/examples/play.py
Erik Fröjdh abb1d20ca3 WIP
2024-10-28 12:25:47 +01:00

14 lines
287 B
Python

import matplotlib.pyplot as plt
import numpy as np
plt.ion()
import aare
from pathlib import Path
p = Path('/Users/erik/data/aare_test_data/jungfrau/jungfrau_single_master_0.json')
f = aare.File(p)
frame = f.read_frame()
fig, ax = plt.subplots()
im = ax.imshow(frame, cmap='viridis')