Standard test videos for video processing

So, when processing images, lena is the standard model for testing algorithms in the research community. Similarly .. Are there standard videos for testing MATLAB codes for video processing?

+6
source share
2 answers

Video sequences are also often used, although to a certain extent this depends on the type of video algorithm you are developing (reflected in the level of movement, type of movement, resolution, etc.) and the type of file you want (i.e. yuv, compressed etc.).

As a starting point for the wizard * .yuv, Carphone * .yuv, akiyo * .yuv, bus * .yuv, coastguard.yuv, flower.yuv.

For example, googling above showed reasonably looking repositories as follows: http://trace.eas.asu.edu/yuv/ and http://media.xiph.org/video/derf/

I hope this helps

+5
source

/ Too long for comment /

I came across some built-in sample / demo files in a matlab blog post: http://blogs.mathworks.com/loren/2007/01/10/colormap-manipulations/

Apparently the clown and cameraman files are built-in, and you can just load them using load clown or load cameraman .

However, it depends on the set of tools installed: the clown - from the toolbar and the wavelet operator from the image processing tools. Both can be found on the way to Matlab, of course, so you can always look around. You will also find files: autumn, board, canoe, cell, circle, contour, ...

EDIT: also: http://www.mathworks.com/matlabcentral/answers/1376-finding-example-images-in-the-distribution

But for the video, I personally have not seen anything like this in matlab

EDIT2: I stand fixed: in the vision toolbar there are several video examples in the visiondemos toolkit subdirectory. Just find the avi files in the matlab installation directory

+2
source

Source: https://habr.com/ru/post/916983/


All Articles