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

Function bilateral

src/backend/cpu/bilateral.cpp:24–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22
23template<typename inType, typename outType>
24Array<outType> bilateral(const Array<inType> &in, const float &sSigma,
25 const float &cSigma) {
26 Array<outType> out = createEmptyArray<outType>(in.dims());
27 getQueue().enqueue(kernel::bilateral<outType, inType>, out, in, sSigma,
28 cSigma);
29 return out;
30}
31
32#define INSTANTIATE(inT, outT) \
33 template Array<outT> bilateral<inT, outT>(const Array<inT> &, \

Callers

nothing calls this directly

Calls 3

getQueueFunction · 0.50
dimsMethod · 0.45
enqueueMethod · 0.45

Tested by

no test coverage detected