numpy.save(testDataFileName, a)
// Now read back our test data using an OpInputDataReader operator
graph = lazyflow.graph.Graph()
reader = OpInputDataReader(graph=graph)
reader.FileName.setValue(testDataFileName)
// Read the entire file and verify the contents
After Change
// Grab a section of the h5 data
h5Data = h5Reader.Output[0,0,:,:,:].wait()
assert h5Data.shape == (1,1,3,4,5)
// (Just check part of the data)
for k in range(0,shape[2]):
for l in range(0,shape[3]):
for m in range(0,shape[4]):