Performs image resizing using the specified interpolation kernel
function y = imresize(x, sz, interpolation = "sinc", boundary_mode = "mirror", points = 4)
| x | the input image |
| sz | the size of the output image (or magnification factor) |
| interpolation | the interpolation method being used: “nearest”, “linear”, “cubic” or “sinc” |
| boundary_mode | the boundary extension mode: “zero”, “mirror”, “circular” |
| points | half the number of points used for sinc resampling. |