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
Currently array_slice.cpp sets snap_empty_dims=true when calling loop_in_chunks. This means that slice locations are "rounded" to the nearest pixel rather than being interpolated. (See also the discussion in #661.)
It would be nice to do proper interpolation here:
In array_slice.cpp, pass snap_empty_dims=false when calling loop_in_chunks
Include the interpolation weights in the fields stored in the slice array.
Call collapse_empty_dimensions from dft.cpp to collapse empty dimensions to the interpolated result.
The text was updated successfully, but these errors were encountered:
Once this is resolved we can fix the get_array_metadata function, which now has a hard time because DFT slices and array slices are different so the same metadata can't necessarily be correct for both.
Currently
array_slice.cpp
setssnap_empty_dims=true
when callingloop_in_chunks
. This means that slice locations are "rounded" to the nearest pixel rather than being interpolated. (See also the discussion in #661.)It would be nice to do proper interpolation here:
In
array_slice.cpp
, passsnap_empty_dims=false
when callingloop_in_chunks
Include the interpolation weights in the fields stored in the slice array.
Call
collapse_empty_dimensions
fromdft.cpp
to collapse empty dimensions to the interpolated result.The text was updated successfully, but these errors were encountered: