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

Function medfilt2

src/api/cpp/filters.cpp:31–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29}
30
31array medfilt2(const array& in, const dim_t wind_length, const dim_t wind_width,
32 const borderType edge_pad) {
33 af_array out = 0;
34 AF_THROW(af_medfilt2(&out, in.get(), wind_length, wind_width, edge_pad));
35 return array(out);
36}
37
38array minfilt(const array& in, const dim_t wind_length, const dim_t wind_width,
39 const borderType edge_pad) {

Callers

nothing calls this directly

Calls 3

af_medfilt2Function · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected