| 15 | namespace af { |
| 16 | |
| 17 | array 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 | |
| 24 | array medfilt1(const array& in, const dim_t wind_width, |
| 25 | const borderType edge_pad) { |
no test coverage detected