[−][src]Function arrayfire::medfilt
pub fn medfilt<T>(
input: &Array<T>,
wlen: u64,
wwid: u64,
etype: BorderType
) -> Array<T> where
T: HasAfEnum + ImageFilterType,
Median filter
Parameters
input
is the input image(Array)wlen
is the horizontal length of the filterhlen
is the vertical length of the filteretype
is enum of type BorderType
Return Values
An Array with filtered image data.