| 29 | } |
| 30 | |
| 31 | array 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 | |
| 38 | array minfilt(const array& in, const dim_t wind_length, const dim_t wind_width, |
| 39 | const borderType edge_pad) { |
nothing calls this directly
no test coverage detected