Effacer les filtres
Effacer les filtres

creating a video file

1 vue (au cours des 30 derniers jours)
James
James le 4 Août 2011
Hi
I have been given a number of .ras (image) files which represent each frame of a video. Named football000.ras to football450.ras
I want to create a small video using just a 10 images, for example 050 - 060.
How can I do this on matlab?

Réponses (2)

Walter Roberson
Walter Roberson le 4 Août 2011

James
James le 4 Août 2011
Okay so I have created the variable 'imageArray' reads each .ras file.
files = dir('*.ras')
for k = 1:length(files)
FileName = files(k).name;
fprintf(1, 'Now reading %s\n', FileName);
imageArray = imread(FileName);
imshow(imageArray); % Display image.
drawnow; % Force display to update immediately.
end
Now how do I use this to create my movie.
  1 commentaire
James
James le 4 Août 2011
sorry I am new to Matlab and having difficulty

Connectez-vous pour commenter.

Catégories

En savoir plus sur Convert Image Type dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by