| 88 | } |
| 89 | |
| 90 | af_err af_gaussian_kernel(af_array *out, const int rows, const int cols, |
| 91 | const double sigma_r, const double sigma_c) { |
| 92 | try { |
| 93 | af_array res; |
| 94 | res = getHandle<float>( |
| 95 | gaussianKernel<float>(rows, cols, sigma_r, sigma_c)); |
| 96 | std::swap(*out, res); |
| 97 | } |
| 98 | CATCHALL; |
| 99 | return AF_SUCCESS; |
| 100 | } |
no test coverage detected