mpgread.m
来自「Motion detection in matlab」· M 代码 · 共 26 行
M
26 行
%MPGREAD Read an MPEG encoded movie file. % [M, map] = mpgread('filename', frames) reads the specifed% MPEG file and translates it into the movie M, and colormap map.% If a vector frames is specified, then only the frames specified% in this vector will be placed in M. Otherwise, all frames will% be placed in M.%% M = mpgread('filename', frames, 'indexed')% Reads an MPEG file into the MATLAB 5.3+ format movie which% is a structure array. Each element has a cdata field % containing a uint8 image matrix and a colormap field% containing the colormap. The frames parameter can be [] to% indicate that all frames should be read.%% M = mpgread('filename', frames, 'truecolor')% Reads an MPEG file into the MATLAB 5.3+ format movie. Each% frame in the movie has a truecolor MxNx3 cdata field and% an empty colormap field.%% [R, G, B] = mpgread('filename', frames) will perform the same % operation as above, except that the decoded MPEG frames will% be placed into the matrices R, G, B, where R contains the red% component for each frame, G, the green component, and B, the% blue component.%
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?