18 lines
500 B
Python
18 lines
500 B
Python
from DataContainer.ReadData import read_hdf5_file
|
|
|
|
# filepath = "//DyLabNAS/Data/Evaporative_Cooling/2023/04/18/0003/*.h5"
|
|
# filepath = "//DyLabNAS/Data/Evaporative_Cooling/2023/04/18/0003/2023-04-18_0003_Evaporative_Cooling_000.h5"
|
|
|
|
filepath = "//DyLabNAS/Data/Repetition_scan/2023/04/21/0000/*.h5"
|
|
|
|
groupList = [
|
|
"images/MOT_3D_Camera/in_situ_absorption",
|
|
"images/ODT_1_Axis_Camera/in_situ_absorption"
|
|
]
|
|
|
|
prefix = [
|
|
"camera_0",
|
|
"camera_1"
|
|
]
|
|
|
|
ds = read_hdf5_file(filepath, groupList) |