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

Function gaussianKernel

src/api/cpp/gaussian_kernel.cpp:17–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15
16namespace af {
17array gaussianKernel(const int rows, const int cols, const double sig_r,
18 const double sig_c) {
19 af_array res;
20 AF_THROW(af_gaussian_kernel(&res, rows, cols, sig_r, sig_c));
21 return array(res);
22}
23
24// Compatible function
25array gaussiankernel(const int rows, const int cols, const double sig_r,

Callers 1

gaussiankernelFunction · 0.70

Calls 2

af_gaussian_kernelFunction · 0.50
arrayClass · 0.50

Tested by

no test coverage detected