将颜色从RGB转换为YCbCr打包图像

时间:2012-12-04 02:37:46

标签: java image processing rgb

我正在创建图像压缩程序,我想将颜色从RBG转换为YCbCr,我没有将图像提取为像素并从每个像素获取RBG信息的问题,但是,我不知道如何将像素与新的YCbCr打包在一起产生新形象的信息。

我编写了代码,我操作RGB信息并将其重新组合在一起,它看起来像这样:

private static int packPixel(int red, int green, int blue) {
   return (red << 16) | (green << 8) | blue;
}

public BufferedImage makeNewBufferedImage(short[][] ImageDataRed, short[][] ImageDataGreen, short[][] ImageDataBlue ) {
   int[] newBufferedImageData = new int[rows * cols];
   int index;
   for (int row = 0; row < rows; row++) {
       for (int col = 0; col < cols; col++) {
           index = (row * cols) + col;
           newBufferedImageData[index] = packPixel(ImageDataRed[row][col], ImageDataGreen[row][col], ImageDataBlue[row][col]);
       }
   }

我知道YCbCr拥有更多信息,但我不知道如何将它们打包在一起,也许任何人都可以帮助我?

1 个答案:

答案 0 :(得分:1)

Java Advanced Imaging似乎支持YCbCr。