0

我正在尝试将 RGB 值转换为 YCbCr 颜色格式。使用 Afroge 库。但它给出了这样的结果,对于 Y:0.611,Cb:0.15,Cr:-0.18。这意味着所有值 < 1。但我需要 0 - 255 之间的值。这是我的代码。

        Bitmap bitmap = (Bitmap)pictureBox1.Image;

        double xRatio = (double)bitmap.Width / (double)pictureBox1.Width;
        double yRatio = (double)bitmap.Height / (double)pictureBox1.Height;

        Color gotColor = bitmap.GetPixel((int)((double)mX * xRatio), (int)((double)mY * yRatio));
        label1.Text = (" R : " + gotColor.R);
        label2.Text = (" G : " + gotColor.G);
        label3.Text = (" B : " + gotColor.B);

        YCbCr ycrcb = new YCbCr();
        RGB rgbcolor = new RGB(gotColor);

        ycrcb.Y = YCbCr.FromRGB(rgbcolor).Y;
        ycrcb.Cr = YCbCr.FromRGB(rgbcolor).Cr;
        ycrcb.Cb = YCbCr.FromRGB(rgbcolor).Cb;

        label4.Text = ycrcb.Y.ToString();
        label5.Text = ycrcb.Cr.ToString();
        label6.Text = ycrcb.Cb.ToString();

请帮我。

4

2 回答 2

1

这些是 YCrCb 的标准范围

但是,您可以将结果重新缩放到 0 - 255 范围内

    label4.Text = (ycrcb.Y *255).ToString();
    label5.Text = ((ycrcb.Cr + 0.5)*255).ToString();
    label6.Text = ((ycrcb.Cb + 0.5)*255).ToString();
于 2012-08-16T15:33:28.523 回答
0

公式为:

Y = (byte)((0.299 * red) + (0.587 * green) + (0.114 * blue));
Cb = (byte)(128 - (0.168736 * red) + (0.331264 * green) + (0.5 * blue));
Cr = (byte)(128 + (0.5 * red) + (0.418688 * green) + (0.081312 * blue));

并且你可以使用jpg格式的YCbCr。结果值介于 0 和 255 之间。

于 2015-11-21T13:56:31.483 回答