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
In its current implementation, the shape of the output from propagate is determined by the npix parameter and the center of the output will always be on-axis.
It may be desirable to adjust the location of the output by accepting a window parameter to specify the indices within the output canvas with shape = npix to return. In this way, a user could establish a 2000 x 2000 output array but only return the lower left quadrant by requesting
window= [slice(1000, 2000), slice(0, 1000)]
The text was updated successfully, but these errors were encountered:
In its current implementation, the shape of the output from
propagate
is determined by thenpix
parameter and the center of the output will always be on-axis.It may be desirable to adjust the location of the output by accepting a
window
parameter to specify the indices within the output canvas with shape =npix
to return. In this way, a user could establish a 2000 x 2000 output array but only return the lower left quadrant by requestingThe text was updated successfully, but these errors were encountered: