MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / medfilt

Function medfilt

src/api/cpp/filters.cpp:17–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15namespace af {
16
17array medfilt(const array& in, const dim_t wind_length, const dim_t wind_width,
18 const borderType edge_pad) {
19 af_array out = 0;
20 AF_THROW(af_medfilt(&out, in.get(), wind_length, wind_width, edge_pad));
21 return array(out);
22}
23
24array medfilt1(const array& in, const dim_t wind_width,
25 const borderType edge_pad) {

Callers 4

TESTFunction · 0.85
gforFunction · 0.85
medianfilterFunction · 0.85
adaptiveThresholdFunction · 0.85

Calls 3

af_medfiltFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected