how can make video from images.......
42 ビュー (過去 30 日間)
表示 古いコメント
hello........suppose i have my 50 image......how i can play these image as video..........
0 件のコメント
回答 (4 件)
Shashank Prasanna
2013 年 1 月 30 日
編集済み: John Kelly
2015 年 2 月 26 日
What you are looking for is here:
0 件のコメント
Image Analyst
2013 年 1 月 30 日
7 件のコメント
Image Analyst
2021 年 7 月 24 日
@Craig Ulrich, I believe my new code on my File Exchange time stamps the frame as an option.
Youssef Khmou
2013 年 1 月 31 日
編集済み: Youssef Khmou
2013 年 1 月 31 日
HI, take a look at the links they sent you . As an alternative answer here is how :
Your fifty images must be labeled in order, per example in the database coil-100 , an object starts from obj1__0 until obj1__355 with step 5 .
Suppose your images are like : image1.jpg, image2.jpg,....., image50.jpg then :
Manifold=zeros(n,p,3,50); % (n,p) height and width of the image, all with same.
for x=1:50
filename=strcat('image',num2str(x),'.jpg');
Manifold(:,:,:,x)=imread(filename);
end
Next wether you create Gif file (imwrite),avifile or any other way, just follow the steps that you can find in the MAT doc .
i Hope this helps .
2 件のコメント
Image Analyst
2018 年 1 月 13 日
We don't know what it is either because you forgot to paste the actual error message here.
However, you can use my code, which works.
Clay Jensen
2021 年 7 月 24 日
To do this, you need a lot of images and a high-quality video editor. Personally, I would recommend movavi's video editor https://www.movavi.com/videoeditor/ . Just drop all the images and glue them. That's all.
0 件のコメント
参考
カテゴリ
Find more on Convert Image Type in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!