CUDA YV12/NV12 转换成 RGB24

一、YV12格式说明

二、NV12格式说明


 

三、YUV420格式一览

四、 NV12转RGB24kernel函数实现

/*
 * pYdata:Y分量数据起始地址
 * pUVdata:UV分量数据起始地址
 * stepY:Y分量一行的宽度,等于图像一行的像素点数
 * stepUV:UV分量一行的宽度,等于图像一行的像素点数
 * pImgData:输出的RGB数据
 * channels:rgb共3个channel,所以这个参数是3
 */
__global__ void YCrCb2RGBConver(uchar *pYdata, uchar *pUVdata,int stepY, int stepUV, uchar *pImgData, int width, int height, int channels)
{
    const int tidx = blockIdx.x * blockDim.x + threadIdx.x;
    const int tidy = blockIdx.y * blockDim.y + threadIdx.y;

    if (tidx < width && tidy < height)
    {
        int indexY, indexU, indexV;
        uchar Y, U, V;
        indexY = tidy * stepY + tidx;    
        Y = pYdata[indexY];				/* Y分量的值 */

		/* 偶数列UV分量的值 */
        if (tidx % 2 == 0)
        {
            indexU = tidy / 2 * stepUV + tidx;
            indexV = tidy / 2 * stepUV + tidx + 1;
            U = pUVdata[indexU];		/* U分量的值 */
            V = pUVdata[indexV];		/* V分量的值 */
        }
        else if (tidx % 2 == 1)		/* 奇数列UV分量的值 */
        {
            indexV = tidy / 2 * stepUV + tidx;
            indexU = tidy / 2 * stepUV + tidx - 1;
            U = pUVdata[indexU];
            V = pUVdata[indexV];
        }

        pImgData[(tidy*width + tidx) * channels + 2] = uchar (Y + 1.402 * (V - 128));
        pImgData[(tidy*width + tidx) * channels + 1] = uchar (Y - 0.34413 * (U - 128) - 0.71414*(V - 128));
        pImgData[(tidy*width + tidx) * channels + 0] = uchar (Y + 1.772*(U - 128));
    }
}

参考资料:

NV12格式转RGB的CUDA实现 - 云+社区 - 腾讯云 (tencent.com)

(14条消息) YV12 and NV12_fanbird2008的专栏-CSDN博客

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

denglin12315

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值