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
The first and third tests which are commented out here (on test_timeseries_writer ) fail when uncommented because the data array created has inconsistent shapes for the frames output from the imageio reader.
Expected Behavior
The tests run as expected and the DefaultReader is able to read an image created with the parameters of those tests.
Reproduction
This is reproducible in aicsimageio version 4.11.0 if you add reader.dask_data.compute() or reader.data to the same test which effectively does what the test in bioio is doing (stitches multi-frame images together and stacks them). The resulting error in both cases is the same: ValueError: could not broadcast input array from shape (100,100,4) into shape (1,100,100)
It appears all frames are the same shape in this case except the first one.
Describe the Bug
The first and third tests which are commented out here (on
test_timeseries_writer
) fail when uncommented because the data array created has inconsistent shapes for the frames output from theimageio
reader.Expected Behavior
The tests run as expected and the
DefaultReader
is able to read an image created with the parameters of those tests.Reproduction
This is reproducible in
aicsimageio
version4.11.0
if you addreader.dask_data.compute()
orreader.data
to the same test which effectively does what the test inbioio
is doing (stitches multi-frame images together and stacks them). The resulting error in both cases is the same:ValueError: could not broadcast input array from shape (100,100,4) into shape (1,100,100)
It appears all frames are the same shape in this case except the first one.
Environment
The text was updated successfully, but these errors were encountered: