フィルターのクリア

Video with horizontal lines

2 ビュー (過去 30 日間)
Tomer
Tomer 2019 年 8 月 27 日
コメント済み: darova 2019 年 9 月 8 日
I have 2000 TIF images and I want to create a video with these images. I want to draw three horizontal lines and write some text that appears in all the frames of the video. Any help on how to do this?

採用された回答

darova
darova 2019 年 8 月 27 日
Look for VideoWriter
  8 件のコメント
darova
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
darova
darova 2019 年 9 月 8 日
How it is going. Did this help?

サインインしてコメントする。

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by