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

Function ycbcr2rgb

src/api/cpp/ycbcr_rgb.cpp:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14namespace af {
15
16array ycbcr2rgb(const array& in, const YCCStd standard) {
17 af_array temp = 0;
18 AF_THROW(af_ycbcr2rgb(&temp, in.get(), standard));
19 return array(temp);
20}
21
22array rgb2ycbcr(const array& in, const YCCStd standard) {
23 af_array temp = 0;

Callers 1

TESTFunction · 0.85

Calls 3

af_ycbcr2rgbFunction · 0.50
arrayClass · 0.50
getMethod · 0.45

Tested by

no test coverage detected