| 43 | } |
| 44 | |
| 45 | array maxfilt(const array& in, const dim_t wind_length, const dim_t wind_width, |
| 46 | const borderType edge_pad) { |
| 47 | af_array out = 0; |
| 48 | AF_THROW(af_maxfilt(&out, in.get(), wind_length, wind_width, edge_pad)); |
| 49 | return array(out); |
| 50 | } |
| 51 | |
| 52 | } // namespace af |
no test coverage detected