Where can I get AVI dataset for video processing?
Mostra commenti meno recenti
I need video dataset for video processing. Since MATLAB video processing supports avi or mp4, I want the dataset or database in these formats. Where do I get these videos? Please specify the link.
Risposte (3)
Ganesh K Davanagege
il 28 Set 2015
Modificato: Walter Roberson
il 28 Set 2015
1 voto
Dinesh Iyer
il 29 Set 2015
If you have Computer Vision System Toolbox, look in:
matlabroot/toolbox/vision/visiondata
It has a bunch of AVI files that you can use.
Dinesh
2 Commenti
Davide Magnelli
il 25 Ott 2017
I have modified the script in that way:
if true
folder = fileparts(which('FieldMovie.avi'));
movieFullFileName= fullfile(folder,'FieldMovie.avi');
videoObject = VideoReader(movieFullFileName);
numberOfFrames = videoObject.NumberOfFrames;
processo=zeros(640,480,numberOfFrames);
for frame = 1:numberOfFrames
thisFrame = read(videoObject,frame);
processo(:,:,frame);
end
end
Now I am looking for an avi video for testing, some tips?
Image Analyst
il 25 Ott 2017
rhinos.avi ships with MATLAB.
Image Analyst
il 28 Set 2015
0 voti
Not sure what you mean by dataset. The MATLAB-standard rhinos.avi and traffic.avi videos are shipped with some toolboxes, like the Image Processing Toolbox.
Categorie
Scopri di più su Audio and Video Data in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!