Video with horizontal lines

3 Ansichten (letzte 30 Tage)
Tomer
Tomer am 27 Aug. 2019
Kommentiert: darova am 8 Sep. 2019
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?

Akzeptierte Antwort

darova
darova am 27 Aug. 2019
Look for VideoWriter
  8 Kommentare
darova
darova am 1 Sep. 2019
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 am 8 Sep. 2019
How it is going. Did this help?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Display Image finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by