繁体   English   中英

如何识别从android中的相机捕获的图像的背景色?

[英]how to identify the background color of image captured from camera in android?

我只想在背景色为白色时从相机捕获图像。

还建议如何检测图像的背景色?

有图书馆吗?

提前致谢

长话短说:)

确保已在相机预览中进行设置:

mCamera.getParameters().setPreviewFormat(ImageFormat.NV21);

您可以在相机上回调您的图像:

Camera.PreviewCallback previewCb = new Camera.PreviewCallback() {
        public void onPreviewFrame(byte[] data, Camera camera) {
            if(camera == null || extractedColorsBackground.getVisibility() == View.VISIBLE)
                return;


            Camera.Parameters parameters = camera.getParameters();
            Camera.Size size = parameters.getPreviewSize();
            Camera.CameraInfo info = new Camera.CameraInfo();
            Camera.getCameraInfo(0, info);
            if(mBitmapWidth == 0 || mBitmapHeight == 0) {
                    mBitmapWidth = size.width;
                    mBitmapHeight = size.height;
            }

            mCurrentImageRGB = new int[mBitmapWidth*mBitmapHeight];
            Recognize.decodeYUV420SP2(mCurrentImageRGB, data, mBitmapWidth, mBitmapHeight);

        }
    };

和变压器:

public static void decodeYUV420SP2(int[] rgb, byte[] yuv420sp, int width, int height) {

final int frameSize = width * height;

for (int j = 0, yp = 0; j < height; j++) {
    int uvp = frameSize + (j >> 1) * width, u = 0, v = 0;
    for (int i = 0; i < width; i++, yp++) {
        int y = (0xff & ((int) yuv420sp[yp])) - 16;
        if (y < 0)
            y = 0;
        if ((i & 1) == 0) {
            v = (0xff & yuv420sp[uvp++]) - 128;
            u = (0xff & yuv420sp[uvp++]) - 128;
        }

        int y1192 = 1192 * y;
        int r = (y1192 + 1634 * v);
        int g = (y1192 - 833 * v - 400 * u);
        int b = (y1192 + 2066 * u);

        if (r < 0)
            r = 0;
        else if (r > 262143)
            r = 262143;
        if (g < 0)
            g = 0;
        else if (g > 262143)
            g = 262143;
        if (b < 0)
            b = 0;
        else if (b > 262143)
            b = 262143;
        rgb[yp] = 0xff000000 | ((r << 6) & 0xff0000) | ((g >> 2) & 0xff00) | ((b >> 10) & 0xff);
    }
}

}

mCurrentImageRGB -将是此图像的int颜色数组。 现在您可以算出多少是白色。

关于white更多信息-如果至少会有一张#FFFFFF图像,这将是令人惊讶的),但是您必须计算不是白色但非常接近白色的颜色,例如,在#BBBBBB相机上方的所有颜色都无法为您提供确切的#FFFFFF))您可以在回调中看到您得到了什么,并且可以根据情况采取行动。

暂无
暂无

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

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