How to save video frames in another matlab file without making them visible

I have a video and I am doing some processing on the frames of video in matlab. After that the frames are compiled and a video is made by using those processed frames. There are about 300 frames in the video. As processing is quite heavy so my computer freezes. I just don't want to show those processed frames rather I want that those frames should be stored in another mfile. I know the commands like saveas or set(gcf,'visible','off') but they don't work in my case. What I have so far:
aviobj =avifile('trail.avi','Compression','None','fps',1);
%video to be made from frames
obj = aviread('highwayvideo.avi');
for 1:300
.......... % processing
imi = getframe(gcf);
aviobj = addframe(aviobj,imi);
end
aviobj = close(aviobj);
Any help would be highly appreciated.

 Accepted Answer

Use VideoReader() and read(). There's no requirement for you to display the image after you read it in. But that's not the real problem. 300 frames is not that many. The real reason why it gets slower and slower as it goes on is because you're displaying it in the same container (an axes control) without clearing out the axes, so all 300 frames are trying to get stuffed into it. You'll find it runs much faster if you do "cla reset" right before each call to imshow() or image().

5 Comments

I'm guessing that the "processing" involves drawing things on the frame.
Thank you Sir. 'cla reset' command is working. One thing more sir; if I want to show two frames simultaneously then how can I do that using this command.
Have an axes for each one. Create them in GUIDE. Then in the code:
axes(handles.axes1);
imshow(image1);
axes(handles.axes2);
imshow(image2);
Sir I have never used GUIDE. Can you kindly explain that how can I use GUIDE to implement the above mentioned code.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!