AVI TO YUV conversion

조회 수: 5 (최근 30일)
Chaine San Buenaventura
Chaine San Buenaventura 2013년 10월 6일
답변: Balaji 2023년 11월 7일
AVI to YUV conversion in Matlab please :)

답변 (1개)

Balaji
Balaji 2023년 11월 7일
Hi Chaine,
To convert an AVI video file to YUV format in MATLAB, you can use the `VideoReader` and `VideoWriter` functions along with some additional processing. Here's an example of how you can perform the conversion:
aviFileName = 'input.avi';
yuvFileName = 'output.yuv';
videoReader = VideoReader(aviFileName);
videoWriter = VideoWriter(yuvFileName, 'YUV');
open(videoWriter);
while hasFrame(videoReader)
frameRGB = readFrame(videoReader);
frameYUV = rgb2ycbcr(frameRGB);
writeVideo(videoWriter, frameYUV);
end
close(videoWriter);
Thanks
Balaji

카테고리

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