pub fn box_blur<T: PixelComponent, const CHANNELS: usize>(
input: ImageView<'_, T, CHANNELS>,
kernel_width: usize,
kernel_height: usize,
border: BorderMode<T, CHANNELS>,
) -> VisionResult<Image<T, CHANNELS>>Expand description
Applies a normalized rectangular box filter.