matlab中将视频流转换成图片

来源:互联网 发布:多管火箭炮升级数据 编辑:程序博客网 时间:2024/05/17 18:12

function VideoStreamtTOPic(videoname,OutPicPath)
%UNTITLED Summary of this function goes here
%   Detailed explanation goes here
%  input: the name of video stream and the path to save the picture
%  output: picture  

a=mmreader(videoname);
nframes=a.NumberOfFrames;
for i = 1:nframes
im = read(a, i);
imwrite(im,[OutPicPath '.jpg']);
end
end

对于上面程序举例如下:

在命令窗口或m文件的编辑窗口输入以下语句即可;

videoname='mei.mpg';

OutPicPath='K:\视频流转成图片\mei\';

VideoStreamtTOPic(videoname,OutPicPath)

注意:视频'mei.mpg'位于matlab当前工作目录下;

原创粉丝点击