How can I convert a YCbCr image to 4:2:0

41 次查看(过去 30 天)
I have the image converted from rgb to YCbCr but now I have to change it from 4:4:4 to 4:2:0 and I have no idea how to do that.

回答(1 个)

Joseph Cheng
Joseph Cheng 2020-2-18
编辑:Joseph Cheng 2020-2-18
while you're probably not going to implement this in simulink but take a look at https://www.mathworks.com/help/vision/ref/chromaresampling.html which covers how it should be done for 4:4:4 to 4:2:2.
Not sure what the standard practice is for the down sampling as to which of say the 2x4 pixel subsets are used or average together to genearte the block but overall you're combining/binning the colors 2x2.
edit: also take a look at https://www.mathworks.com/matlabcentral/fileexchange/36417-yuv-files-reading-and-converting which is for YUV (yes i know you're looking for YCBCr)
where
yuv(:,:,1) = double(Y);
yuv(:,:,2) = imresize(double(U),2,'bicubic');
yuv(:,:,3) = imresize(double(V),2,'bicubic');
you can see that layer 2 and 3 (U and V) are resampled/resized to match the 4:2:0 scheme.
the file exchange that was mentioned in other answer posts appears to have been removed https://www.mathworks.com/matlabcentral/answers/65149-converting-ycbcr-4-4-4-to-4-2-0?s_tid=gn_loc_drop

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by