android - 如何将 android 位图转换为 NV12 颜色格式?

标签 android colors bitmap

我正在编写一些将 android 位图转换为 NV12 格式的代码。

我从 android 位图中找到了给我 NV21 的代码,看起来该代码有效。 ( Convert bitmap array to YUV (YCbCr NV21) )

我发现的唯一区别是根据引用在 NV12 和 NV21 之间切换 U 和 V 字节。 ( http://www.fourcc.org/yuv.php )

所以我在原来的代码中改变了U和V的位置,结果如下。

byte [] getNV12(int inputWidth, int inputHeight, Bitmap scaled) {
    // Reference (Variation) : https://gist.github.com/wobbals/5725412

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

    //Log.i(TAG, "scaled : " + scaled);
    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;
        V = ( ( -38 * R -  74 * G + 112 * B + 128) >> 8) + 128; // Previously U
        U = ( ( 112 * R -  94 * G -  18 * B + 128) >> 8) + 128; // Previously V

        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 ++;
        }
    }
}

我在转换图像时错了吗? (我很确定编码器没有问题。)

损坏的图像截图:https://www.dropbox.com/s/vho14831fgnh1kl/Thu%20Aug%2001%2008_56_14%20GMT%2B09_00%202013%20%281%29.mp4_000002000.jpg

最佳答案

替换

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;

与,

R = (argb[index] & 0xff000000) >>> 24;
G = (argb[index] & 0xff0000) >> 16;
B = (argb[index] & 0xff00) >> 8;

关于android - 如何将 android 位图转换为 NV12 颜色格式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17983502/

相关文章:

android - 在游戏过程中使用 setVisibility(View.GONE) 隐藏广告

vba - 如何在Excel VBA中将纯色应用于数据栏?

javascript - 如何使用 APCA(高级永久对比度算法)找到颜色对比度?

java - 我想将图像大小减小到 64 KiB 以保存在 mySql 数据库中

android 为什么我无法检索压缩位图?

android - 在android中创建存储图像的数据库

android 菜单项不显示图标?

android - Material Design 中介绍的原生 SeekbarPreference

python - 情节的不同部分具有不同的颜色

android - 位图分割