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
I followed the example bigstream_intro_tutorial jupyter notebook with the default parameters.
The registration looks fine after global affine. However, weird grid pattern misalignment appeared after local affines.
This happens even if I define local affines filled with identity matrices.
I am not familiar with dask, but I suspect the merging of overlapping regions between chunks is causing the problem.
global affine
global + local affines
The text was updated successfully, but these errors were encountered:
To take the edge, one need to go all the way to None, and not to zero.
e.g.
[0,1,2,3,4,5,6][slice(3,0,1)] -- > [3, 2, 1]
[0,1,2,3,4,5,6][slice(3,None,1)] --> [3, 2, 1, 0]
See also:
JaneliaSciComp/bigstream#8
I followed the example bigstream_intro_tutorial jupyter notebook with the default parameters.
The registration looks fine after global affine. However, weird grid pattern misalignment appeared after local affines.
This happens even if I define local affines filled with identity matrices.
I am not familiar with dask, but I suspect the merging of overlapping regions between chunks is causing the problem.
global affine
global + local affines
The text was updated successfully, but these errors were encountered: