10位YUV420到RGB的转换 [英] 10 bit YUV420 to RGB Conversion

查看:0
本文介绍了10位YUV420到RGB的转换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在处理从YUV420到RGB的转换,但图像颜色不能产生良好的效果。最初我自己的文件是10位的。最初,我从8位文件开始。

我使用下面的代码读取YUV420图像并转换为RGB。因为我有YUV420.YUV图像文件,但该代码是用于视频的,因此,我只读取了1帧。然后我得到的YUV是全尺寸的Y,但U和V是维基百科上描述的一半大小。然后我将图像大小调整到图像的完整大小,并应用YUV到RGB的转换。但RGB图像的颜色不正确。我已经附上了这些文件,以便您可以运行并查看问题所在。以下是YUV文件tulips_yuv420_inter_planar_qcif.yuv

我还有两个问题;

首先,一帧的流的大小应该等于Y的1.5*,但无论我使用uint8还是uint16来读取文件,它都非常大。

其次,如果我有10位YUV420文件,如何修改此代码以显示正确的RGB。

fname = 'tulips_yuv420_inter_planar_qcif.yuv';
width  = 176;
height = 144;
nFrame=1;
fid = fopen(fname,'r');           % Open the video file
stream = fread(fid,'uint8');    % uint16
% stream = fread(fid);    % uint8

length = 1.5 * width * height;  % Length of a single frame

y = double(zeros(height,   width,   nFrame));
u = double(zeros(height/2, width/2, nFrame));
v = double(zeros(height/2, width/2, nFrame));

for iFrame = 1:nFrame

   frame = stream((iFrame-1)*length+1:iFrame*length);

   % Y component of the frame
   yImage = reshape(frame(1:width*height), width, height)';
   % U component of the frame
   uImage = reshape(frame(width*height+1:1.25*width*height), width/2, height/2)';
   % V component of the frame
   vImage = reshape(frame(1.25*width*height+1:1.5*width*height), width/2, height/2)';

   y(:,:,iFrame) = double(yImage);
   u(:,:,iFrame) = double(uImage);
   v(:,:,iFrame) = double(vImage);

end
u=imresize(u,size(y),'bicubic');
v=imresize(v,size(y),'bicubic');
yuv=cat(3,y,u,v);
T = [1,0,1.28033;1,-0.21482,-0.38059;1,2.12798,0];


RGB(:,:,1) = T(1)*yuv(:,:,1) + T(4)*yuv(:,:,2) + T(7)*yuv(:,:,3) ;
RGB(:,:,2) = T(2)*yuv(:,:,1) + T(5)*yuv(:,:,2) + T(8)*yuv(:,:,3) ;
RGB(:,:,3) = T(3)*yuv(:,:,1) + T(6)*yuv(:,:,2) + T(9)*yuv(:,:,3) ;

figure,imshow(uint8(RGB))

推荐答案

示例文件是8位(不是10位),存储格式比较棘手。

该工具允许您选择格式。
合适的格式如下:

帧分为两个场--上场和下场(隔行扫描格式)。
每个字段的分辨率为176x72。
由于格式为YUV420,因此U和V字段的大小为88x36。

代码示例使用以下阶段:

  • 读取Y、U和V的上一字段(每个元素8位)。
  • 阅读Y、U、V的下栏
  • 上下场交错。
  • 将U和V向上采样到Y的大小。
  • 将YUV转换为RGB(使用已有的MatLab函数ycbcr2rgb)。

以下代码示例读取第一帧并转换为RGB:

fname = 'tulips_yuv420_inter_planar_qcif.yuv';
width  = 176;
height = 144;
fid = fopen(fname, 'r');           % Open the video file

Y0 = (fread(fid, [width, height/2], 'uint8'))';     %Read upper field of Y plane
U0 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read lower field of Y plane
V0 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read upper field of U plane

Y1 = (fread(fid, [width, height/2], 'uint8'))';     %Read upper field of Y plane
U1 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read lower field of U plane
V1 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read lower field of V plane

fclose(fid);

%Interleave upper and lower fields
Y = zeros(height, width);
Y(1:2:end, :) = Y0;
Y(2:2:end, :) = Y1;

U = zeros(height/2, width/2);
U(1:2:end, :) = U0;
U(2:2:end, :) = U1;

V = zeros(height/2, width/2);
V(1:2:end, :) = V0;
V(2:2:end, :) = V1;

U = imresize(U, size(Y), 'bicubic');
V = imresize(V, size(Y), 'bicubic');
YUV = cat(3, Y, U, V);

%Convert YUV to RGB (MATLAB function ycbcr2rgb uses BT.601 conversion formula).
RGB = ycbcr2rgb(uint8(YUV));

figure,imshow(RGB)

结果:


读取10位YUV420:

假设:

  • 每个10位分量存储在2个字节中(无"位打包")。
  • 数据存储在每个字节的较低部分(每个uint16元素保存一个范围为[0,1023]的值)。
  • 存储格式与uint8样本的非标准隔行扫描格式相同。

从8位样本构建10位YUV420样本文件(单帧测试):
以下代码从8位样本构建10位样本(将范围从存储在uint8中的8位扩展到存储在uint16中的10位)。

fname = 'tulips_yuv420_inter_planar_qcif.yuv';
width  = 176;
height = 144;
fid = fopen(fname, 'r');           % Open the video file
Y0 = (fread(fid, [width, height/2], 'uint8'))';     %Read upper field of Y plane
U0 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read lower field of Y plane
V0 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read upper field of U plane
Y1 = (fread(fid, [width, height/2], 'uint8'))';     %Read upper field of Y plane
U1 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read lower field of U plane
V1 = (fread(fid, [width/2, height/4], 'uint8'))';   %Read lower field of V plane
fclose(fid);

fid = fopen('10bits__tulips_yuv420_inter_planar_qcif.yuv', 'w');           % Open for writing
fwrite(fid, uint16(Y0'*(1023/255)), 'uint16'); %1023 = 2^10-1, and 255 = 2^8-1
fwrite(fid, uint16(U0'*(1023/255)), 'uint16');
fwrite(fid, uint16(V0'*(1023/255)), 'uint16');
fwrite(fid, uint16(Y1'*(1023/255)), 'uint16');
fwrite(fid, uint16(U1'*(1023/255)), 'uint16');
fwrite(fid, uint16(V1'*(1023/255)), 'uint16');
fclose(fid);

读取10位YUV420
以下代码读取10位YUV420的单帧(匹配假设列表):

fname = '10bits__tulips_yuv420_inter_planar_qcif.yuv';
width  = 176;
height = 144;
fid = fopen(fname, 'r');           % Open the video file

Y0 = (fread(fid, [width, height/2], 'uint16'))';     %Read upper field of Y plane
U0 = (fread(fid, [width/2, height/4], 'uint16'))';   %Read lower field of Y plane
V0 = (fread(fid, [width/2, height/4], 'uint16'))';   %Read upper field of U plane

Y1 = (fread(fid, [width, height/2], 'uint16'))';     %Read upper field of Y plane
U1 = (fread(fid, [width/2, height/4], 'uint16'))';   %Read lower field of U plane
V1 = (fread(fid, [width/2, height/4], 'uint16'))';   %Read lower field of V plane

fclose(fid);

%Interleave upper and lower fields
Y = zeros(height, width);
Y(1:2:end, :) = Y0;
Y(2:2:end, :) = Y1;

U = zeros(height/2, width/2);
U(1:2:end, :) = U0;
U(2:2:end, :) = U1;

V = zeros(height/2, width/2);
V(1:2:end, :) = V0;
V(2:2:end, :) = V1;

U = imresize(U, size(Y), 'bicubic');
V = imresize(V, size(Y), 'bicubic');
YUV = cat(3, Y, U, V);

%Convert elements range from [0, 1023] to range [0, 1] (MATLAB function ycbcr2rgb supports doubles in range [0, 1]).
YUV = YUV/1023; %1023 applies 10 bits range. 2^10-1 = 1023

%Convet YUV to RGB (MATLAB function ycbcr2rgb uses BT.601 conversion formula).
RGB = ycbcr2rgb(YUV);

%Convert from double to uint8 (from range [0, 1] to range [0, 255]).
RGB = im2uint8(RGB);

figure,imshow(RGB)

注意:
代码YUV = YUV/1023将"10位"格式转换为[0,1]double格式。
使用转换是因为ycbcr2rgb不支持10位输入。


计算文件大小:
你说得对:"一帧的大小等于1.5*Y的大小"。
假设10位分量存储在2个字节中,Y的大小为宽度*高度*2,一帧的大小为宽度*高度*3。

这篇关于10位YUV420到RGB的转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆