pub fn zoom<S, A>(
data: &ArrayBase<S, Ix3>,
zoom: [f64; 3],
order: usize,
mode: BorderMode<A>,
prefilter: bool,
) -> Array<A, Ix3>Expand description
Zoom an array.
The array is zoomed using spline interpolation of the requested order.
data- A 3D array of the data to zoomzoom- The zoom factor along the axes.order- The order of the spline.mode- The mode parameter determines how the input array is extended beyond its boundaries.prefilter- Determines if the input array is prefiltered with spline_filter before interpolation. The default istrue, which will create a temporaryf64array of filtered values iforder > 1. If setting this tofalse, the output will be slightly blurred iforder > 1, unless the input is prefiltered.