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

Function minfilt

src/api/cpp/filters.cpp:38–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38array minfilt(const array& in, const dim_t wind_length, const dim_t wind_width,
39 const borderType edge_pad) {
40 af_array out = 0;
41 AF_THROW(af_minfilt(&out, in.get(), wind_length, wind_width, edge_pad));
42 return array(out);
43}
44
45array maxfilt(const array& in, const dim_t wind_length, const dim_t wind_width,
46 const borderType edge_pad) {

Callers 2

TESTFunction · 0.85
adaptiveThresholdFunction · 0.85

Calls 3

af_minfiltFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected