代码搜索:frames
找到约 9,514 项符合「frames」的源代码
代码结果 9,514
www.eeworm.com/read/435304/7794088
m mpgread.m
%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 specifi
www.eeworm.com/read/435304/7794089
m framedif6.m
%求解视频的帧差分布 (方法六,方差分布图)
%读取视频
clear all;
clc;
tic;%start time
shot=mpgread('..\videos\wipe.mpg',[],'truecolor');%读取视频
%shot=aviread('video\skiing.avi');
frames=size(shot,2);
framedif=zeros(fr
www.eeworm.com/read/435304/7794090
m framedif1.m
%求解视频的帧差分布 (方法一,通用直方图统计法)
%读取视频
clear all;
clc;
tic;%start time
shot=mpgread('..\videos\cut.mpg',[1:200],'truecolor');%读取视频
%shot=aviread('video\skiing.avi');
frames=size(shot,2);
%movie(shot)
www.eeworm.com/read/435304/7794093
m framedif5.m
%求解视频的帧差分布 (方法五,像素差统计法)
%读取视频
clear all;
clc;
tic;%start time
shot=mpgread('..\videos\cut.mpg',[1:200],'truecolor');%读取视频
%shot=aviread('video\skiing.avi');
frames=size(shot,2);
w=size(shot(
www.eeworm.com/read/434996/7799359
m demo.m
%Speaker Identification Demo
%Amin Koohi(AminKoohi@yahoo.com OR AminSohrevardi@yahoo.com )
%
%Example:
% >> code = train('train\', 8); %(Training stage)
% >> test('test\', 8, code)
www.eeworm.com/read/399805/7834868
m testbitrate.m
function testBitRate(varargin)
%testBitRate
% This function attempts to figure out what codecs support the bitRate
% constructor parameter (see videoWriter.m). To do so, we try encoding a
%
www.eeworm.com/read/399805/7834872
m testgetinfo.m
%testGetinfo
% Script that does some minimal testing of the getinfo functions. Windows
% only.
%
%Example:
% testGetinfo
%
%Copyright (c) 2006 Gerald Dalley
%See "MIT.txt" in the installat
www.eeworm.com/read/399805/7834910
m readindvframetests.m
function readIndvFrameTests(plugin,ext,varargin)
%readIndvFrameTests(plugin,ext,...)
% This function is like readTests, but it has been customized to work
% with videoReader plugins that work on
www.eeworm.com/read/399805/7834940
m writetests.m
function writeTests(plugin)
%writeTests(plugin)
% Performs a battery of simple read-write tests on a given videoReader/
% videoWriter plugin. Uses the default codec.
%
%Examples:
% writeTest
www.eeworm.com/read/399805/7834963
m testgopsize.m
function testGopSize(varargin)
%testGopSize
% This function attempts to figure out what codecs support the gopSize
% constructor parameter (see videoWriter.m). To do so, we try encoding a
%