Function resize
pub fn resize<T, const CHANNELS: usize>(
input: ImageView<'_, T, CHANNELS>,
output_width: usize,
output_height: usize,
interpolation: Interpolation,
) -> Result<Image<T, CHANNELS>, VisionError>where
T: PixelComponent,Expand description
Resizes an interleaved image while preserving semantic metadata.