-
add4 Verilog代码
add4 verilog code -add4 Verilog code
- 2022-02-26 10:00:52下载
- 积分:1
-
基于Wince4.2操作系统,evc4.0开发环境下ActiveX 控件的创建的例程源码...
基于Wince4.2操作系统,evc4.0开发环境下ActiveX 控件的创建的例程源码-Wince4.2 based operating systems, evc4.0 development environment ActiveX controls created routines FOSS
- 2022-01-28 20:08:16下载
- 积分:1
-
DIBR用于合成立体图片
根据原始彩色图和对应的深度图,通过DIBR合成方法得到立体图片。首先对深度图像进行形态学处理,以减少视点变换产生的空洞,平滑目标视点内部的物体轮廓;利用视点变换方程生成目标视点;对含有空洞的目标视点采用图像修复算法进行后处理,设计了含有深度项的代价函数,在深度的约束下进行纹理搜索,将最佳匹配块填补到空洞;在修复空洞的过程中采用亮度优先的策略以适应不同的色度采样格式。
- 2022-01-23 11:01:49下载
- 积分:1
-
查询CPU信息
MFC源码 关于获取CPU信息,信息有厂商 频率 等一系列信息
里面应用的还有汇编 所以比WMI查询的信息更加准确和有效
- 2022-02-04 07:41:08下载
- 积分:1
-
A resizing example in visual basic best for practcal demostration in vb
A resizing example in visual basic best for practcal demostration in vb
- 2022-12-27 09:30:03下载
- 积分:1
-
市面上很少的石器时代服务端2.0源代码,编译后就是大家朝思暮想的石器时代2.0服务端!...
市面上很少的石器时代服务端2.0源代码,编译后就是大家朝思暮想的石器时代2.0服务端!-Very few services available in the market end of the Stone Age 2.0 source code is compiled朝思暮想U.S. side of the Stone Age 2.0 services!
- 2022-08-12 00:11:05下载
- 积分:1
-
VirtualDub是一套多媒体剪辑软件,它的功能可一点也不输给Premiere以及Media Studio等专业等级产品的功能。在VirtualDub中主要的...
VirtualDub是一套多媒体剪辑软件,它的功能可一点也不输给Premiere以及Media Studio等专业等级产品的功能。在VirtualDub中主要的功能可以区分为两大部份,一是可以让您针对现有的电影短片文件如。AVI以及。MPG等做编辑的工作,另一项则是可以搭配您的影像补捉卡做即时的动态影像捕捉的功能。-VirtualDub is a multimedia editing software, the functions it is not lost Premiere Media Studio and professional grade products function. In VirtualDub main functions can be divided into two parts, one can make your address existing documents such as film clips. AVI and. MPG done editing work, and the other one is you can mix the cards to capture images do instant video capture function.
- 2023-07-27 05:55:05下载
- 积分:1
-
我自已设计的时钟程序
我自已设计的时钟程序-clock procedures
- 2022-11-10 11:35:04下载
- 积分:1
-
win2000 under the direct access to port 1, using install_giveio.bat, call loaddr...
win2000下直接访问端口
1、用install_giveio.bat,调用loaddrv.exe,安装giveio.sys 到系统中。
2、安装 port.pas后,在delphi的‘Custom‘面板中, 有一个port元件。
3、拖一个TPort到窗体上,命名为port。
4、那么就可以直接访问端口(2000下也可以),如:读 i:= port[$378] 写 port[$378]:=
5、status_giveio.sys 查看状态,remove_giveio.sys 反安装驱动。
6、tstio.exe 直接调用bios来发声,可以用来测试是否安装驱动成功。cygwin1.dll是loaddrv.exe 要调用的,因为它是用MinGw32下的gcc编译的。 -win2000 under the direct access to port 1, using install_giveio.bat, call loaddrv.exe, installed into the system giveio.sys. 2, installed after port.pas in delphi the
- 2022-07-16 02:09:50下载
- 积分:1
-
采用邻接矩阵表示无向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列。本输入样例中所用的图如下所示...
采用邻接矩阵表示无向图,完成图的创建、图的深度优先遍历、图的广度优先遍历操作。其中图的顶点信息是字符型,图中顶点序号按字符顺序排列。本输入样例中所用的图如下所示:
Input Format:
第一行输入两个值,第一个是图中顶点的个数,第二个是图中边的条数
第二行输入各顶点的信息,即输入每个顶点字符
第三行开始输入每条边,每条边的形式为两个顶点的序号,中间以空格隔开,输入完一条边换行
Output format:
首先输出图的顶点信息,输出完毕换行
接着输出图的邻接矩阵,假如图中有n个顶点,则输出形式为n行n列的邻接矩阵,输出完毕换行
接下来一行输出从图的第一个顶点开始进行深度优先遍历的序列,中间以空格隔开,输出完毕换行
最后一行输出从图的第一个顶点开始进行广度优先遍历的序列,中间以空格隔开,输出完毕换行
-Using an undirected graph adjacency matrix representation to complete the map creation, graph depth-first traversal, graph breadth-first traversal operation. In which vertex information is character, the graph vertex number by characters in order. The input sample used in the diagram are as follows:
Input Format:
The first line of input two values, the first one is the number of graph vertices, the second one is the number of graph edges
Second row, enter information in each vertex, that enter each vertex character
Start typing in the third line of each side, each side in the form of two vertices
- 2022-01-26 03:32:41下载
- 积分:1