You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import fabio, numpy
img = numpy.arange(110).reshape((10,11))
f = fabio.limaimage.LimaImage(data=img)
f.save("example.h5")
g = fabio.open("example.h5")
g.nframes
for i,j in enumerate(g): print(i, j.shape)
#So far so good
f.save("example_0001.h5")
g = fabio.open("example_0001.h5")
g.nframes
# Now things are geting crazy
for i,j in enumerate(g): print(i, j.shape, j.filename, j.currentframe, id(j))
# infinite loop
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: