% convert .mp4 to jpg picture
input='srcinput.mp4';
v = VideoReader(input);
i = 1;
while 1
if ~hasFrame(v)
break;
end
frame = readFrame(v);
temp=strcat('jpg\',num2str(i),'.','jpg');
imwrite(frame,temp);
i = i+1;
end
%end
shixin_0125 博主文章分类:图像视觉 ©著作权
% convert .mp4 to jpg picture
input='srcinput.mp4';
v = VideoReader(input);
i = 1;
while 1
if ~hasFrame(v)
break;
end
frame = readFrame(v);
temp=strcat('jpg\',num2str(i),'.','jpg');
imwrite(frame,temp);
i = i+1;
end
%end
PDF 另存为图片,pdf python操作,python 转换PDF, Python PDF图片
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M