Video with horizontal lines
4 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
darova
2019 年 8 月 27 日
Look for VideoWriter
8 件のコメント
darova
2019 年 9 月 1 日
You said that your images are: F_001, F_002, .......F_2000
This line means: 1F.tif, 2F.tif, ... 100F.tif
I = imread([num2str(i), 'F.tif']); % read image
Use this line
s = sprintf('%04dF.tif',i);
I = imread(s);
Show the error occurs
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!