Skip to content
Snippets Groups Projects
Commit 4ab87105 authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Manually made correction that is already implemented on master

parent 68e441d0
No related branches found
No related tags found
No related merge requests found
......@@ -115,6 +115,10 @@ class TifSingleSeriesFileAccessor(GenericImageFileAccessor):
axs.append('C')
da = np.expand_dims(da, len(da.shape))
if 'Z' not in axs:
axs.append('Z')
da = np.expand_dims(da, len(da.shape))
yxcz = np.moveaxis(
da,
[axs.index(k) for k in order],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment