Unable to read MATLAB figure file *.fig in imread. The error is unable to determine file format.
8 次查看(过去 30 天)
显示 更早的评论
I am trying to make a movie for saved images in my working directory. The images (mesh plots) are named as H100, H200, ..., H2000. The file format of these images is *.fig. (H100.fig, H200.fig,...). I am running the following script to make the movie. I took this script from another post in an online help forum and trying to make it work for my problem.I am not familiar with movie making in MATLAB as it is my first attempt to make a movie for my plotted results.
images = cell(20,1);
I=100:100:2000;
for i=1:20
images{i}=imread(sprintf('H%d.fig',I(i)));
end
writerObj = VideoWriter('Concentration.avi');
writerObj.FrameRate = 30;
open(writerObj);
for u=1:20
frame = im2frame(images{u});
writeVideo(writerObj, frame);
end
close(writerObj);
implay('Concentration.avi');
When I change the file format to *.jpg, it runs fine. It is not possible for me to change the file format for each of the image. I am unable to make it work for my problem. Any help will be highly appreciated. Thanks.
0 个评论
采纳的回答
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Convert Image Type 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!