mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-12-23 13:31:24 +01:00
7 lines
221 B
Python
7 lines
221 B
Python
from aare import File, Frame
|
|
|
|
if __name__ == "__main__":
|
|
file = File("/home/bb/github/aare/data/jungfrau_single_master_0.json")
|
|
frame = file.get_frame(0)
|
|
print(frame.rows, frame.cols)
|
|
print(frame.get(0,0)) |