码迷,mamicode.com
首页 > 其他好文 > 详细

MATLAB图片折腾3

时间:2017-09-03 21:08:38      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:frame   http   name   成功   ext   number   amp   filename   atl   

把视频抽帧,转化成图片

我的代码如下,成功实现
clc;
clear;
videofilename=‘k:\GraduationWork\Resource\video.wmv‘; %where you put the video file
video=VideoReader(videofilename);
frame_number=floor(video.Duration*video.FrameRate);
while hasFrame(video)
image_name=strcat(‘e:\graduationwork\frames\‘,num2str(i),‘.jpg‘);
frame=readFrame(video);
imwrite(frame,image_name,‘jpg‘);
frame=[];
end

MATLAB图片折腾3

标签:frame   http   name   成功   ext   number   amp   filename   atl   

原文地址:http://www.cnblogs.com/guohaoyu110/p/7470743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!