Where can I get AVI dataset for video processing?

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.

답변 (3개)

Ganesh K Davanagege
Ganesh K Davanagege 2015년 9월 28일
편집: Walter Roberson 2015년 9월 28일

1 개 추천

I am finding many video datasets here.
But, all these files are in YUV format. MATLAB2015a VideoReader() does not support YUV format. So, I wanted to convert all these files to AVI format for video processing.
Dinesh Iyer
Dinesh Iyer 2015년 9월 29일

1 개 추천

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

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?
rhinos.avi ships with MATLAB.

댓글을 달려면 로그인하십시오.

Image Analyst
Image Analyst 2015년 9월 28일

0 개 추천

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.

카테고리

질문:

2015년 9월 28일

댓글:

2017년 10월 25일

Community Treasure Hunt

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

Start Hunting!

Translated by