简体   繁体   English

将 RGB 转换为 YCbCr - C 代码

[英]Convert RGB to YCbCr - C code

I need to convert RGB to YCbCr for my final project and I trying to do this way (I'm programming in C):我需要为我的最终项目将 RGB 转换为 YCbCr,并且我尝试这样做(我正在用 C 编程):

/* Autor: Vinicius Garcia
 * Data : 09.ago.2011
 * 
 * Função que converte um pixel RGB em YCbCr
 * 
 * param : int R valor do pixel no canal red
 * param : int G valor do pixel no canal green
 * param : int B valor do pixel no canal blue
 * return: int* vetor de inteiros com os valores H, S e V calculados - nesta ordem
 */
int* converter_RGB_para_YCbCr(int R, int G, int B){
    int* YCbCr = (int*) malloc(3 * sizeof(int));

    double delta = 128.0; //Constante necessaria para o calculo da conversão de cor
    double Y  = (0.299 * R + 0.587 * G + 0.114 * B);
    double Cb = ((B - Y) * 0.564 + delta);
    double Cr = ((R - Y) * 0.713 + delta);

    YCbCr[0] = (int) Y;
    YCbCr[1] = (int) Cb;
    YCbCr[2] = (int) Cr;
    return YCbCr;
}

But it doesn't work for me!但这对我不起作用!

I was comparing with cvCvtColor (from OpenCv library) and the results doesn't match:我正在与 cvCvtColor (来自 OpenCv 库)进行比较,结果不匹配:

            R = 88,  G  = 76,   B = 78
cvCvtColor: Y = 80,  Cb = 127, Cr = 134
myfunction: Y = 382, Cb = 132, Cr = 132 (cr and cr are always equal!)

I really need help with this, I trying do this for a long time and I couldn't find any answer for my doubt.我真的需要帮助,我尝试了很长时间,但我找不到任何疑问的答案。


Do you guys think I'm getting the RGB values wrong?你们认为我弄错了RGB值吗? I'm doing this way:我正在这样做:

uchar B = CV_IMAGE_ELEM(img_RGB, uchar, linha, coluna * 3);
uchar G = CV_IMAGE_ELEM(img_RGB, uchar, linha, coluna * 3 + 1);
uchar R = CV_IMAGE_ELEM(img_RGB, uchar, linha, coluna * 3 + 2);

Then I'm calling my conversion function this way:然后我以这种方式调用我的转换 function :

converter_RGB_para_YCbCr(R, G, B);

My function expects int R, int G, int B but I'm passing uchar B, uchar G, uchar R.我的 function 期望 int R, int G, int B 但我正在传递 uchar B, uchar G, uchar ZE1E1D3D40573127E9EE0480CAF1283D。 its that ok?可以吗?

int y  = (int)( 0.299   * R + 0.587   * G + 0.114   * B);
int cb = (int)(-0.16874 * R - 0.33126 * G + 0.50000 * B);
int cr = (int)( 0.50000 * R - 0.41869 * G - 0.08131 * B);

you should use this formula matlab uses it你应该使用这个公式 matlab 使用它

Y = 0.257R´ + 0.504G´ + 0.098B´ + 16 Y = 0.257R´ + 0.504G´ + 0.098B´ + 16

Cb = -0.148R´ - 0.291G´ + 0.439B´ + 128 Cb = -0.148R´ - 0.291G´ + 0.439B´ + 128

Cr = 0.439R´ - 0.368G´ - 0.071B´ + 128 Cr = 0.439R´ - 0.368G´ - 0.071B´ + 128

and to rgb和 rgb

R´ = 1.164(Y - 16) + 1.596(Cr - 128) R´ = 1.164(Y - 16) + 1.596(Cr - 128)

G´ = 1.164(Y - 16) - 0.813(Cr - 128) - 0.392(Cb - 128) G´ = 1.164(Y - 16) - 0.813(Cr - 128) - 0.392(Cb - 128)

B´ = 1.164(Y - 16) + 2.017(Cb - 128) B´ = 1.164(Y - 16) + 2.017(Cb - 128)

I have tested them in a software im making they work ok我已经在一个软件中对它们进行了测试,使它们可以正常工作

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM