medfilt1

Function medfilt1 

Source
pub fn medfilt1<T>(input: &Array<T>, wlen: u64, etype: BorderType) -> Array<T>
Expand description

One dimensional median filter on image

§Parameters

  • input is the input image(Array)
  • wlen is the horizontal length of the filter
  • etype is enum of type BorderType

§Return Values

An Array with filtered image data.