android - 将位图数组转换为 YUV (YCbCr NV21)

标签 android image-processing android-camera yuv android-image

如何将BitmapFactory.decodeFile()返回的Bitmap转成YUV格式(类似于相机的onPreviewFrame()返回字节数组)?

最佳答案

下面是一些实际工作的代码:

    // untested function
    byte [] getNV21(int inputWidth, int inputHeight, Bitmap scaled) {

        int [] argb = new int[inputWidth * inputHeight];

        scaled.getPixels(argb, 0, inputWidth, 0, 0, inputWidth, inputHeight);

        byte [] yuv = new byte[inputWidth*inputHeight*3/2];
        encodeYUV420SP(yuv, argb, inputWidth, inputHeight);

        scaled.recycle();

        return yuv;
    }

    void encodeYUV420SP(byte[] yuv420sp, int[] argb, int width, int height) {
        final int frameSize = width * height;

        int yIndex = 0;
        int uvIndex = frameSize;

        int a, R, G, B, Y, U, V;
        int index = 0;
        for (int j = 0; j < height; j++) {
            for (int i = 0; i < width; i++) {

                a = (argb[index] & 0xff000000) >> 24; // a is not used obviously
                R = (argb[index] & 0xff0000) >> 16;
                G = (argb[index] & 0xff00) >> 8;
                B = (argb[index] & 0xff) >> 0;

                // well known RGB to YUV algorithm
                Y = ( (  66 * R + 129 * G +  25 * B + 128) >> 8) +  16;
                U = ( ( -38 * R -  74 * G + 112 * B + 128) >> 8) + 128;
                V = ( ( 112 * R -  94 * G -  18 * B + 128) >> 8) + 128;

                // NV21 has a plane of Y and interleaved planes of VU each sampled by a factor of 2
                //    meaning for every 4 Y pixels there are 1 V and 1 U.  Note the sampling is every other
                //    pixel AND every other scanline.
                yuv420sp[yIndex++] = (byte) ((Y < 0) ? 0 : ((Y > 255) ? 255 : Y));
                if (j % 2 == 0 && index % 2 == 0) { 
                    yuv420sp[uvIndex++] = (byte)((V<0) ? 0 : ((V > 255) ? 255 : V));
                    yuv420sp[uvIndex++] = (byte)((U<0) ? 0 : ((U > 255) ? 255 : U));
                }

                index ++;
            }
        }
    }

关于android - 将位图数组转换为 YUV (YCbCr NV21),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5960247/

相关文章:

日志猫中的Android Studio "Clear All",更改日志级别过滤器时日志仍然返回

algorithm - 如何以编程方式找到多边形的方向?

android - 设置显示方向失败

android - 如何更改相机预览回调缓冲区的方向?

android - 如何在点击设置图标时显示设置菜单?

android - android studio更新后Gradle Sync不刷新项目

java - 使用电源管理器

python - 计算图像两半的像素比

algorithm - 类似 photoshop 的快速选择算法的开源实现?

android - Android 设备摄像头图像的人体形状检测