Convert AVI file to series of images

85 Ansichten (letzte 30 Tage)
NS
NS am 10 Mär. 2012
Kommentiert: Image Analyst am 3 Apr. 2023
Hi all,
I have a AVI file that was formatted in MATLAB. I wish to convert it to a series of tif images. I am not able to do this in imageJ. Is it possible?
NS

Akzeptierte Antwort

Chandra Kurniawan
Chandra Kurniawan am 11 Mär. 2012
Hi,
This is the simpler version :
obj = mmreader('rhinos.avi');
vid = read(obj);
frames = obj.NumberOfFrames;
for x = 1 : frames
imwrite(vid(:,:,:,x),strcat('frame-',num2str(x),'.tif'));
end
You can use your own video by replacing 'rhinos.avi' with your own.
I hope this works!
  4 Kommentare
Farhan Ferdous
Farhan Ferdous am 6 Jul. 2017
which directory will I get the images?
Image Analyst
Image Analyst am 6 Jul. 2017
He did not specify a folder, unfortunately, so the images will go into the current folder, the same one as the m-file.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (3)

Elijah Galbreath
Elijah Galbreath am 30 Jun. 2021
outputFolder = uigetdir(path);
% Read in the video
viddir = uigetdir(path);
viddir = fullfile(viddir,'test.avi');
obj = VideoReader(viddir);
vid = read(obj);
% Number of frames
frames = obj.NumFrames;
for x = 1 : frames
%Create a filename
outputBaseFileName = sprintf('Frame %4.4d.png', x);
outputFullFileName = fullfile(outputFolder, outputBaseFileName);
imwrite(vid(:,:,:,x), outputFullFileName, 'png');
end

Image Analyst
Image Analyst am 11 Mär. 2012
Here are the key lines:
outputFolder = 'c:/users/whatever'; % Change this!
% Read in the movie.
mov = aviread(movieFullFileName);
% Determine how many frames there are.
numberOfFrames = size(mov, 2);
for frame = 1 : numberOfFrames
% Extract the frame from the movie structure.
thisFrame = mov(frame).cdata;
% Create a filename.
outputBaseFileName = sprintf('Frame %4.4d.png', frame);
outputFullFileName = fullfile(outputFolder, outputBaseFileName);
% Write it out to disk.
imwrite(thisFrame, outputFullFileName, 'png');
end
  14 Kommentare
Gaia Gbola
Gaia Gbola am 5 Mär. 2020
Hello, I am using the DEMO imaging version for MATLAB, but your code seems not to run on it, it does not recognize the function aviread. Is it possible that is because of the version that I have?
Image Analyst
Image Analyst am 5 Mär. 2020
aviread() is a really old function and it may have been removed by now. You'll need to replace it with VideoReader. See attached demos for help and examples.

Melden Sie sich an, um zu kommentieren.


Sushil  Sharma
Sushil Sharma am 23 Sep. 2019
Bearbeitet: Sushil Sharma am 23 Sep. 2019
Upadte answer
In the lestest veriosn of matlab, we have to use VideoReader instead of mmreader,then you are able to convert any video file into a frames
Here the simple of code to get the frames
%% Change .avi format to images frames
obj = VideoReader('test2.avi');
vid = read(obj);
frames = obj.NumberOfFrames;
for x = 1 : frames
imwrite(vid(:,:,:,x),strcat('frame-',num2str(x),'.png'));
end
  2 Kommentare
William Thielicke
William Thielicke am 3 Apr. 2023
... but there is no other way than the frame-by-frame read and write? This is really slow... I am capturing data with the imaq toolbox. RAM is too small, so I am logging to disk. But I need to have individual TIFF images. Converting on a frame-to-frame basis is extremely slow with 12 bit uncompressed grayscale data...
Image Analyst
Image Analyst am 3 Apr. 2023
@William Thielicke that reads the whole video into RAM and then writes out to disk one frame at a time. That's probably as fast as it can go. It's probably the call to imwrite() that is taking the time. I assume you're using SSD for your drive. You might try using a ramdisk instead of your SSD to save your individual files.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by