搜索资源列表
200561555616250020000
- 车牌识别系统 需要注意的地方: 使用VC++6.0做开发工具, 采用简单的SDI框架结构 ,一次处理一幅位图(有兴趣的可以作成MDI) 1)位图信息的数据是从左下往右下为一行,一行一行往上排的。 2)每行像素应该是4的倍数,不足的地方用空点补齐,读的时候注意跳过冗余点。 3)主要数据都存在Doc里面,BMP的主要数据存在一个由ImgData指向的BYTE型的内存空间(根据位图的大小,动态分配的)。 4)数据读进来以后,注意向
FastReport.v4.7.49
- Current version --------------- + added confirmation reading for TfrxMailExport + added TimeOut field to TfrxMailExport form - fixed bug whih PDF export in Delphi4 and CBuilder4 - fixed bug with some codepage which use two bytes for special
brew window manager
- Objective This topic describes how to create a windowed application that will share the display with other applications. Requirements Brew® MP windowed applications need to be written differently than traditional Brew MP applications.
pro
- 如果采用单链表保存单词,可采用如下办法压缩存储空间。如果两个单词的后缀相同,则可以用同一个存储空间保存相同的后缀。例如,原来分别采用单链表保存的单词Str1“abcdef”和单词Str2“dbdef”,经过压缩后的存储形式如下。 请设计一个高效的算法完成两个单链表的压缩存储,并估计你所设计算法的时间复杂度。 要求:阅读预设代码,编写函数SNODE * ziplist( SNODE * head1, SNODE * head2 ) ziplist的功能是:
AllocBuddy
- 伙伴系统:avail[0..m]为可利用空间表, n为申请分配量, 若有不小于n的空闲块, 则分配相应的存储块, 并返回其首地址,否则返回NULL -Partner system: avail [0 .. m] can be used for table space, n for the distribution of the volume of applications, if n is not less than the free block, then the distribution o
codetransform
- windows下实现编码转换的类 每个函数的输入的第一个参数是目的字符串指针的引用, 第二个参数是源字符串(要转换字符串)指针的引用. 要求目的字符串指针指向NULL,在转换函数中根据 源字符串长度分配地址空间给目的字符串。 在目的字符串生存周期结束后,调用者必须自行释放地址空间, 否则会出现内存泄漏。-windows under the category of data conversion functions for each input parameter is t
os1
- os的基本操作:完成,若有不小于n的空闲块,则分配相应的存储块 否则显示NULL。 若分配后可利用空间表不空,则pav指向表中刚分配过的结点的后继结点-os basic operations: complete, if not less than n of the free block, then the distribution of the corresponding storage block or show NULL. If the distribution of the use of
NullSpaceApp
- Null Space Approach Null Space Approach Null Space Approach Null Space Approach-Null Space Approach Null Space Approach Null Space Approach Null Space Approach Null Space Approach
softhy130I
- J001_0.0.2 ------------------------------------------------ 主要更新:conn.php文件。 1.修改了数据库2个表的数据类型。 2.增加了表单判断,防止NULL提交。 3.增加了HTML过滤,防止恶意提交。 4.增加空格和回车显示功能。 5.修改提交跳转防止刷新重复提交。 6.增加表情功能。 7.增加UBB代码,插入图片(系统固定变形200*200) / 红色加粗字体。 8.增加表单字数限制功能。-J001_0.0.2--------
getPDF1
- In this paper, we investigate the timing and carrier frequency offset (CFO) synchronization problem in decode and forward cooperative systems operating over frequency selective channels. A training sequence which consists of one orthogonal fr
getPDF2
- In this paper, we investigate the timing and carrier frequency offset (CFO) synchronization problem in decode and forward cooperative systems operating over frequency selective channels. A training sequence which consists of one orthogonal fr
NonRect
- VC++非矩形窗体(四角为弧形)的代码实例,像一些音乐播放器的窗体、一些游戏的窗体等,除了把角变为弧形外,还有圆角、椭圆窗体和不规则窗体,我的实现过程是设置对话框的背景为 “TRANSPARENT”(透明),并在WM_CTLCOLORDLG消息处理器中创建一支“空笔”(NULL)来绘制对话框背景,然后用TransparenBlt将自己的位图放到对话框上。 -VC++ non-rectangular form (four corners of the arc) of the code exa
test-particle-simulation-around-null
- 空间等离子体磁零点附近的实验粒子模拟,主要方向是空间物理中地球磁尾磁零点附近的粒子动力学研究!-particle dynamics around magnetic null in space plasma magnetic reconnection
Null-space---MATLAB
- process to calculate null space in matlab
[7---2002]-Solving-the-small-sample-size-problem-
- The small sample size problem is often encountered in pattern recognition. It results in the singularity of the within-class scatter matrix S,? in Linear Discriminant Analysis (LDA). Dijjrent methods have been proposed la solve this problem in face
Hash-table-
- ** public domain code by Jerry Coffin, with improvements by HenkJan Wolthuis. ** Tested with Visual C 1.0 and Borland C 3.1. ** Compiles without warnings, and seems like it should be pretty ** portable. */ /* ** These are used in fr
space
- C#结合数据库查询空数据(NULL)查询,是一个基础的数据库查询小技巧源码-C# query data combined with database queries empty (NULL), a basic database query tips source
pcg
- PCG Preconditioned Conjugate Gradients Method is a replacement of the standard built-in PCG code. Two new options are implemented: flex and null . The flex option changes the standard PCG algorithm into the flexible one. It allows using sophisticated
the-benefits-of-the-set-p-=-NULL
- (1)在没有 p = NULL 时,指针p是指向一个内存地址的,只是这个内存地址对当前程序是非法的。对黑客来说,这可是一个机会。 每次程序崩溃时几乎都会在同一个地址(p所指的位置),这个地址会很容易到黑客手上的,然后黑客可以在指定的内存地址上事先布置好自己的代码,然后运行程序,崩溃时就会到黑客指定的代码上去,结果不堪设想啦。 (2)在有 p = NULL 时,程序同样崩溃,但崩溃的地址是0. 0地址对任何程序都是非法的,所以再牛的黑客也不能把自己的代码布置到内存地址是0的空间上。所以对这种情
code-knfst
- CVPR文章“Kernel Null Space Methods for Novelty Detection”的代码(CVPR article "Kernel Null Space Methods for Novelty Detection" code)