[][src]Function simplecv::filter::mean_smooth_

pub fn mean_smooth_<S, T>(
    src: &ArrayBase<S, Ix2>,
    ksize: usize,
    border: BorderType,
    out: &mut ArrayBase<T, Ix2>
) where
    S: Data<Elem = f64>,
    T: DataMut<Elem = f64>, 

Smooth the image with a mean kernel.

The output buffer should be allocated by users.

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