How do I obtain the height and width of a given YUV video clip under Matlab? Is there any reader() function or get() function? Anything else? -


how width , height of given yuv file? dimensions needed subsequent movie/matrix processing.

from of videoreader

%# create reader object (does not load file yet) xyloobj = videoreader('xylophone.mpg');  %# query dimensions nframes = xyloobj.numberofframes; vidheight = xyloobj.height; vidwidth = xyloobj.width; 

edit

for older versions of matlab, can use aviinfo query properties of movie.


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -