storing an image
3 ビュー (過去 30 日間)
古いコメントを表示
I have taken a video converted in number of frames and created a folder named NEW ,
nframes is 40
for k = 1:nFrames
................. .................
end
please tell how to write imaged into NEW folder in that for loop
1 件のコメント
Chandra Kurniawan
2012 年 1 月 12 日
you mean, you've managed to split video file into frames?
and now you want to save the image frames into a folder?
採用された回答
Chandra Kurniawan
2012 年 1 月 12 日
obj = mmreader('yourvideofile.avi');
vid = read(obj);
nFrame = 5;
for k = 1 : nFrame
newname = strcat('frame0',num2str(k),'.jpg');
imwrite(vid(:,:,:,k), newname);
end
2 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!