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

Function bilateral

src/backend/oneapi/bilateral.cpp:22–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

dimsMethod · 0.45

Tested by

no test coverage detected