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

Function bilateral

src/api/c/bilateral.cpp:30–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29template<typename T>
30inline af_array bilateral(const af_array &in, const float &sp_sig,
31 const float &chr_sig) {
32 using OutType =
33 typename conditional<is_same<T, double>::value, double, float>::type;
34 return getHandle(bilateral<T, OutType>(getArray<T>(in), sp_sig, chr_sig));
35}
36
37af_err af_bilateral(af_array *out, const af_array in, const float ssigma,
38 const float csigma, const bool iscolor) {

Callers 3

TESTFunction · 0.50
gforFunction · 0.50
mainFunction · 0.50

Calls 1

getHandleFunction · 0.70

Tested by

no test coverage detected