-
简单的提取背景的算法实现
转载,仅供参考。平均法视频关键帧提取。转载,仅供参考。平均法视频关键帧提取。转载,仅供参考。平均法视频关键帧提取。转载,仅供参考。平均法视频关键帧提取。转载,仅供参考。平均法视频关键帧提取。
- 2022-03-19 05:17:25下载
- 积分:1
-
RC3_ok
RC3算法,用c语言实现。包括加密和解密(The RC3 algorithm using the C language. Including encryption and decryption)
- 2012-05-13 22:25:52下载
- 积分:1
-
05_数码管显示0-9
基于51单片机的LED 0-9显示,浅显易懂(LED 0-9 Display Based on 51 Single Chip Microcomputer)
- 2020-06-17 19:20:02下载
- 积分:1
-
数据结构与算法程序+(C++)+China-pub高清电子书
数据结构与算法程序.大家好!现在我们将要开始一个穿越“数据结构、算法和程序”这个抽象世界的特殊旅程,(Data structure and algorithmic program)
- 2017-12-25 16:11:47下载
- 积分:1
-
sift算法源代码
美国哥伦比亚大学开发最新sift算法源代码
- 2022-07-22 02:11:59下载
- 积分:1
-
testZeroMQ
内含简单项目代码及ZeroMQ使用教程,资源适合初学者,可以满足快速入门要求
下载ZeroMQ
下载网址:http://zeromq.org/intro:get-the-software
点击“Windows sources”下载zeromq-4.0.3.zip文件
编译ZeroMQ库文件
解压zeromq-4.0.3.zip文件,进入buildsmsvc目录,用VS打开*.sln工程文件,编译生成解决方案。编译完成后,会在lib目录下生成dll和lib文件
编写简单的测试工程
1.用VS新建2个项目,一个是server端,一个是client端
2.将ZeroMQ源码项目的include目录下的两个文件“zmq.h”,“zmq_utils.h”拷贝至自己新建的工程
3.将ZeroMQ源码项目的lib目录下的两个文件“libzmq.dll”,“libzmq.lib”拷贝至自己新建的工程
4.将文件“zmq.h”,“zmq_utils.h”和“libzmq.lib”添加进自己新建的项目。(ZeroMQ simple project containing the code and tutorials, resources for beginners, to meet the requirements of the Quick Start Download ZeroMQ Download URL: http://zeromq.org/intro:get-the-software Click " Windows sources" download zeromq-4.0. 3.zip ZeroMQ library files compiled zeromq-4.0.3.zip unzip the file, enter builds msvc directory, with VS open*. sln project file, the compiler generates solutions. After the compilation is complete, it will generate dll and lib files in the lib directory to write a simple test project. Using VS New two projects, one is server-side, is a client-side two would both include directories ZeroMQ source project under File " zmq.h" , " zmq_utils.h" copy to their new project 3 would be two files ZeroMQ source project lib directory under " libzmq.dll" , " libzmq.lib" copy to their new project 4 would file " zmq.h" , " zmq_utils.h" and " libzmq.lib" added to their new projects.)
- 2014-02-19 08:43:26下载
- 积分:1
-
HH_Lib_Test
说明: 一个用于C#系统硬件设备管理(监视,启用,禁用)的源代码库(A source code library for the management (monitoring, enable, disable) of the hardware equipment of the C?system)
- 2020-06-18 23:40:02下载
- 积分:1
-
uCOS_DEMO_for_28
STM32F103嵌入式移植UCOS的DEMO程序,有参考帮助(STM32F10X shift embed system UCOS demo code.)
- 2013-10-05 13:13:49下载
- 积分:1
-
encryption
简单的双规加密法和钥控序列加密法
C++实现,可选择(Doubletrack and Keycontrol)
- 2021-04-29 01:58:43下载
- 积分:1
-
C# 修复Access数据库的一个范例程序
C# 修复Access数据库的一个范例程序,不过不知道到底能不能修复吧,这个修复过程的编写,可参考以下代码:
//声明临时数据库的名称
string temp = DateTime.Now.Year.ToString();
temp += DateTime.Now.Month.ToString();
temp += DateTime.Now.Day.ToString();
temp += DateTime.Now.Hour.ToString();
temp += DateTime.Now.Minute.ToString();
temp += DateTime.Now.Second.ToString() + ".bak";
temp = strPathMdb.Substring(0, strPathMdb.LastIndexOf("") + 1) + temp;
//定义临时数据库的连接字符串
string temp2 = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + temp;
//定义目标数据库的连接字符串
string strPathMdb2 = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strPathMdb;
JRO.JetEngineClass jt = new JRO.JetEngineClass();//创建一个JetEngineClass对象
//使用JetEngineClass对象的CompactDatabase方法压缩修复数据库
jt.CompactDatabase(strPathMdb2, temp2);
File.Copy(temp, strPathMdb, true);//拷贝临时数据库到目标数据库(覆盖)
File.Delete(temp);//删除临时数据库
MessageBox.Show("修复完成");
这个程序中使用了三个类库:Interop.ADODB.dll、Interop.ADOX.dll、Interop.JRO.dll。
- 2022-01-26 03:31:51下载
- 积分:1