pub fn laplacian<T: PixelComponent, const CHANNELS: usize>(
input: ImageView<'_, T, CHANNELS>,
kernel_size: usize,
scale: f64,
delta: f64,
border: BorderMode<T, CHANNELS>,
) -> VisionResult<Image<f32, CHANNELS>>Expand description
Computes a Laplacian response as signed f32 values.