代码搜索:移相法

找到约 10,000 项符合「移相法」的源代码

代码结果 10,000
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/199908/7814731

cpp backtrack.cpp

//回溯法搜索皇后问题的所有解 //2007-01-25 13:20 #include using namespace std; #define TRUE 1 #define FALSE 0 int X[9]; //解数组,0号单元不用 int ABS(int num) { if(num < 0) num = -num; return n
www.eeworm.com/read/399631/7844038

cpp yufayuyi.cpp

//基于LL(1)法的条件语句语法语义分析程序 #include #include #include #include #include enum keyword{ $right_paren,$left_paren,$mul,$div,$add,$sub,$fenhao,
www.eeworm.com/read/299227/7873322

cpp kuaisufa2.cpp

//快速排序法(类方法)kuaisufa2.cpp #include #include #include #include #define N 10 class kuaisu {public: kuaisu(float a[],int m):n(m) {for(int i=0;i
www.eeworm.com/read/299227/7873349

cpp jishufa2.cpp

//基数排序法(函数模板)jishufa2.cpp #include #include #include #include const int N=10; const int rd=10; const int D=2; void output(int a[],int n) {cout
www.eeworm.com/read/299227/7873650

cpp xuanze3.cpp

//选择排序法(类方法)xuanze3.cpp #include #include #include #include #define N 10 class xuanze {public: xuanze(int a[],int m):n(m) {for(int i=0;i
www.eeworm.com/read/433381/7934166

cpp rootmontecarloreal.cpp

//RootMonteCarloReal.cpp //MonteCarlo法求解非线性方程一个实根 #include //输入输出流头文件 #include "NonLinearEquation.h" //非线性方程(组)求解头文件 using namespace std; //名字空间 void main(void) { long d
www.eeworm.com/read/433381/7934400

cpp le_sparseeuationtotalchoicegaussjordan.cpp

//LE_SparseEuationTotalChoiceGaussJordan.cpp //求解大型稀疏方程组的全选主元高斯-约当消去法 #include //输入输出流头文件 #include "LinearEquation.h" //线性方程(组)求解头文件 void main() { int i; double a[8
www.eeworm.com/read/433381/7934679

inl extremum.inl

// Extremum.inl 计算极值函数(方法)定义头文件 // Ver 1.0.0.0 // 版权所有(C) 何渝, 2002 // 最后修改: 2002.5.31. #ifndef _EXTREMUM_INL //避免多次编译 #define _EXTREMUM_INL //一维极值连分式法 template void ExtremumF