代码搜索:模版匹配

找到约 3,092 项符合「模版匹配」的源代码

代码结果 3,092
www.eeworm.com/read/197075/8032388

dsp 括号匹配检验.dsp

# Microsoft Developer Studio Project File - Name="括号匹配检验" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/197075/8032402

cpp 括号匹配检验.cpp

#include"SqStack.h" #include //括号匹配与否的检验,要求表达式中只有两种括号[]和() int check(){ SqStack S; //存放括号 SElemType e; InitStack(S);//栈的初始化; char c; //存放输入的字符; while((c=getchar())!='
www.eeworm.com/read/197075/8032407

plg 括号匹配检验.plg

Build Log --------------------Configuration: 括号匹配检验 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\BILLGA
www.eeworm.com/read/478955/6708575

txt 模式匹配(kmp).txt

//模式匹配,kmp算法,复杂度O(m+n) //返回匹配位置,-1表示匹配失败,传入匹配串和模式串和长度 //可更改元素类型,更换匹配函数 #define MAXN 10000 #define _match(a,b) ((a)==(b)) typedef char elem_t; int pat_match(int ls,elem_t* str,int lp,elem_t* pa
www.eeworm.com/read/403717/11512688

txt 模式匹配(kmp).txt

//模式匹配,kmp算法,复杂度O(m+n) //返回匹配位置,-1表示匹配失败,传入匹配串和模式串和长度 //可更改元素类型,更换匹配函数 #define MAXN 10000 #define _match(a,b) ((a)==(b)) typedef char elem_t; int pat_match(int ls,elem_t* str,int lp,elem_t* pa
www.eeworm.com/read/400753/11569476

txt 模式匹配(kmp).txt

//模式匹配,kmp算法,复杂度O(m+n) //返回匹配位置,-1表示匹配失败,传入匹配串和模式串和长度 //可更改元素类型,更换匹配函数 #define MAXN 10000 #define _match(a,b) ((a)==(b)) typedef char elem_t; int pat_match(int ls,elem_t* str,int lp,elem_t* pa
www.eeworm.com/read/151940/12160104

m 模板匹配实验.m

clear %图像预处理 A=imread('3.bmp');% 读入图像 %imshow(A);%显示原始图像 B=imcrop(A,[170 15 500 540]);%剪裁图像 %imshow(B);%显示剪切后图像 C=medfilt2(B,[3 3]);% 3*3二维中值滤波 %imshow(C);%显示滤波后图像 D=imadjust(C,[0.3 0.75],[]);