Joining jpg files to make a video

조회 수: 8 (최근 30일)
Rishav
Rishav 2014년 3월 10일
답변: Image Analyst 2014년 3월 20일
I have a certain number of sequential images in a folder named "Snaps". I want a source code in matlab so that i can join them together to make a video. Please help. p.s. I am using matlab 2010a

채택된 답변

Marta Salas
Marta Salas 2014년 3월 10일
편집: Marta Salas 2014년 3월 20일
I use MATLAB2012a, you can try if this function works for you. The input arguments are: the path to the images (vide_dir), extention of the images (extension), path and name of the video with extension (aviname), and the frame rate (fps)
For example: make_video('/home/user/myImages/','jpg','myvideo.avi',5)
function make_video(video_dirs,extension,aviname,fps)
resnames=dir(fullfile(video_dirs,['*.' extension]));
aviobj=VideoWriter(aviname);
aviobj.FrameRate=fps;
open(aviobj);
for i=1:length(resnames)
img=imread(fullfile(video_dirs,resnames(i).name));
F=im2frame(img);
if sum(F.cdata(:))==0
error('black');
end
writeVideo(aviobj,F);
end
close(aviobj);
end
  댓글 수: 3
Rishav
Rishav 2014년 3월 10일
And you have defined the function here. From where are you calling it?
Marta Salas
Marta Salas 2014년 3월 10일
편집: Marta Salas 2014년 3월 10일
You define the function on an M-file called "make_video.m", you have to make sure the name of the file and the name of the function is the same.
Then you call the function on the MATLAB prompt or from another M-file, as the example: make_video('/home/user/myImages/','jpg','myvideo.avi',5)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2014년 3월 20일
My attached demo shows that in the latter half. First it extracts and writes out all the frames, then it reads them back in and builds the movie from the individual still images.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by