[][src]Function simplecv::filter::gaussian_smooth

pub fn gaussian_smooth<S>(
    src: &ArrayBase<S, Ix2>,
    ksize: usize,
    border: BorderType
) -> Array<f64, Ix2> where
    S: Data<Elem = f64>, 

Smooth the image with a gaussian kernel.

  • ksize: is the kernel size.
  • border: how to deal with the border.