I have Y,Cb,Cr values each of 8 bit, can you give me simple C function which converts it to R,G,B each of 8 bit.
Here is a prototype of it.
void convertYCbCrToRGB(unsigned char Y, unsigned char cg, unsigned char cb, unsigned char &r, unsigned &g, unsigned &b);
P.S
I am looking for correct conversion forumla only. Because I am finding it different everywhere. Even I am also expert in C,C++