如何使用c#将RGB转换为YIQ?

时间:2014-03-02 18:59:01

标签: c# algorithm image-processing colors color-space

我正在尝试转换。这是我的代码:

private void RGBtoYIQbutton_Click(object sender, EventArgs e)
        {
            int[] vector_yiq = new int[3];
            double r, g, b, y, i, q;

            Bitmap bmp = new Bitmap(pictureBox1.Image);

            for (int x = 0; x < bmp.Width; x++)
            {
                for (int y = 0; y < bmp.Height; y++)
                {
                    Color clr = bmp.GetPixel(x, y);
                    r = (double)clr.R / 255;
                    g = (double)clr.G / 255;
                    b = (double)clr.B / 255;

                    y = Convert.ToInt32((0.299 * r + 0.587 * g + 0.114 * b) * 100);
                    i = Convert.ToInt32((0.596 * r - 0.274 * g - 0.322 * b) * 100);
                    if (i < 0)
                        i = Convert.ToInt32((0.596 * r - 0.274 * g - 0.322 * b + 0.5957) * 100);
                    q = Convert.ToInt32((0.211 * r - 0.522 * g + 0.311 * b ) * 100);
                    if (q < 0)
                        q = Convert.ToInt32((0.211 * r - 0.522 * g + 0.311 * b + 0.5226) * 100);

                    Color pixelColor;
                    pixelColor = Color.FromArgb(y, i, q);
                    bmp.SetPixel(x, y, pixelColor);
                }
            }
            pictureBox1.Image = bmp;

我知道Y参数的范围是[0,1],I参数的范围是[-0.523,0.523],Q参数的范围是[-0.596,0.596]。我也知道R,G和B的范围是[0,255]。 我正在使用“if”来获得G和B的正值。因此我得到了错误的图像。 我该如何进行转换?

0 个答案:

没有答案