从安卓相机中提取RGB值



我想做的是从Android相机预览中拍摄的照片中获取RGB值流。

所以我在网上查找了大量关于 Stackoverflow 和教程的问题,我已经走到了这一步:

设置以下相机属性:

        Camera.Parameters param = camera.getParameters();
        Display display = getWindowManager().getDefaultDisplay();
        Point size = new Point();
        display.getSize(size);
        int swidth = size.x;
        int sheight = size.y;
        param.setPreviewSize(sheight, swidth);
        camera.setParameters(param);
        param.setPreviewFormat(ImageFormat.NV21);
        camera.setPreviewDisplay(surfaceHolder);
        camera.startPreview();
        camera.setDisplayOrientation(90);

param.setPreviewFormat(ImageFormat.NV21);是为了兼容所有设备。

然后我有:

    jpegCallback = new Camera.PictureCallback() {
        public void onPictureTaken(byte[] data, Camera camera) {
                int[] rgbs = new int[swidth*sheight]; //from above code
                decodeYUV(rgbs, data, swidth, sheight);
                for(int i = 0; i<rgbs.length; i++)
                    System.out.println("RGB: " + rgbs[i]);

其中decodeYUV()是这里给出的方法。我尝试使用这两种答案(方法),并得到类似的结果。这意味着它一定在工作,我只是做错了什么。

现在,我假设它是 ARGB 格式。

我从上面的代码中得到以下输出流:

RGB: -16757489
RGB: -16059990
RGB: -9157
RGB: -49494
RGB: -2859008
RGB: -7283401
RGB: -4288512
RGB: -3339658
RGB: -6411776
RGB: -13994240
RGB: -16750475
RGB: -16735438
RGB: -14937280
RGB: -3866455
RGB: -16762040
RGB: -16714621
RGB: -11647630
RGB: -37121
...
...

如何以R/G/B = [0..255]的形式从中提取 RGB 值?

感谢您的任何帮助!

如果格式为 ARGB,则:

int argb = rgbs[i];
int a = ( argb >> 24 ) & 255;
int r = ( argb >> 16 ) & 255;
int g = ( argb >> 8 ) & 255;
int b = argb & 255;

>>运算符将 int 向右移动,&&是一个布尔值,它掩盖了结果的最后八位。

相关内容

  • 没有找到相关文章

最新更新