资源简介
分别读取YUV视频特定帧的Y、U、V分量。
代码片段和文件信息
function [YUV]=yuv_import(filenamedimsnumfrmstartfrm)
%Imports YUV sequence into Matlab
%[YUV]=yuv_import(filenamedimsnumfrmstartfrm)
%Version: 2.01 Date: 2006/05/25 author: Nikola Sprljan
%
%Input:
% filename - YUV sequence file
% dims - dimensions of the frame [width height]
% numfrm - number of frames to read
% startfrm - [optional default = 0] specifies from which frame to start reading
% with the convention that the first frame of the sequence is denoted
% with 0
%
%Output:
% Y U V - cell arrays of Y U and V components
%
%Example:
% [Y U V] = yuv_import(‘FOREMAN_352x288_30_orig_01.yuv‘[352 288]2);
% image_show(Y{1}2561‘Y component‘);
fid=fopen(filename‘r‘);
if (fid < 0)
error(‘File d
- 上一篇:SOM matlab
- 下一篇:牛拉法潮流计算Matlab程序
相关资源
- 用matlab编写图像插值算法
- MMBEBHE算法matlab
- 一种快速灰度校正方法
- IHS图像融合算法
- 图像处理/图像分割实验/(自动)阈值
- 基于matlab的应用图像处理进行癌细胞
- 车牌号识别程序,基于matlab可直接运
- 基于dft的图像压缩matlab实现
- l利用matlab进行图像纹理特征提取
- 双边滤波图像处理方法MATLAB程序
- MATLAB:图像旋转与插值
- 皮肤镜图像毛发噪声去除程序
- 多级小波分解完整matlab代码
- MATLAB实现Harris角点检测与图像配准
- 图像插值算法
- 开关型矢量中值滤波器matlab
- 视频分帧matlab
- 图像行程编码
- 基于均值漂移mean shift算法的图像分割
- 基于水平集CV模型的图像分割Matlab代码
- 小波变换图像增强
- 盲反卷积算法复原图像
- 低秩表示模型
- 小波模极大值边缘检测+膨胀+边缘跟踪
- 帧间差法进行视频目标检测
- 基于SIFT算法的图像拼接 matlab代码
- 数字图像处理作业
- 基于暗通道先验的图像去雾MATLAB算法
- 数字图像处理维纳滤波Matlab代码分享
- matlab图像边缘检测sobel算子梯度图像
评论
共有 条评论