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

Function convolve3

src/api/cpp/convolve.cpp:81–86  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81array convolve3(const array &signal, const array &filter, const convMode mode,
82 convDomain domain) {
83 af_array out = 0;
84 AF_THROW(af_convolve3(&out, signal.get(), filter.get(), mode, domain));
85 return array(out);
86}
87
88array filter(const array &image, const array &kernel) {
89 return convolve(image, kernel, AF_CONV_DEFAULT, AF_CONV_AUTO);

Callers 5

TESTFunction · 0.85
TESTFunction · 0.85
convolve.cppFile · 0.85
convolve_3dFunction · 0.85
convolveFunction · 0.85

Calls 3

af_convolve3Function · 0.85
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected