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

Function bilateral

src/api/cpp/bilateral.cpp:16–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace af {
15
16array bilateral(const array &in, const float spatial_sigma,
17 const float chromatic_sigma, const bool is_color) {
18 af_array out = 0;
19 AF_THROW(
20 af_bilateral(&out, in.get(), spatial_sigma, chromatic_sigma, is_color));
21 return array(out);
22}
23
24} // namespace af

Callers

nothing calls this directly

Calls 3

af_bilateralFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected