-
emfhd
gmcalab fast generalized form component analysis, Multi-target tracking particle filter, Calculate the multifractal trend fluctuation analysis.
- 2017-06-26 22:51:49下载
- 积分:1
-
opencv1.0_dsp
ti的C6000系列下使用opencv1.0,提供了cv.lib, cxcore.lib。
- 2022-10-31 06:55:04下载
- 积分:1
-
C# 使用互斥量禁止程序运行两个实例
C# 使用互斥量禁止程序运行两个实例,这个主要是根据开发的程序使用环境决定,有时候一个程序运行多个副本,会浪费系统资源造成不稳定,但有人说这样会让软件使用更方便,以下代码是不让程序运行多个实例副本,关键代码如下所示:
private void Form1_Load(object sender, EventArgs e)
{//使用互斥量禁止程序运行两个实例
bool bExist;
var MyMutex =new System.Threading.Mutex(true, "OnlyOneTime", out bExist);
if (bExist)
MyMutex.ReleaseMutex();
else
{
MessageBox.Show("程序已经运行!", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
}
- 2022-03-24 02:20:34下载
- 积分:1
-
STM32-RTC
stm32f030f4写的RTC简易代码,能够实现简单的定时唤醒,设置定时时间,在一段时间后自动触发定时器中断,产生中断标志位,中断处理完相关代码,返回主函数继续执行后续操作。
- 2023-03-20 14:25:04下载
- 积分:1
-
Viterbi算法简洁注释版
说明: Viterbi算法源程序,注释简洁,利于使用(Viterbi algorithm source, concise notes, beneficial use)
- 2005-11-10 17:06:54下载
- 积分:1
-
ZLGnet-guider
周立功的zigbee模块资料,可自动联网,zigbee协议,支持多级互联(ZLG the the zigbee module information, automatic networking, zigbee protocol to support multi-level interconnect)
- 2013-01-11 14:26:32下载
- 积分:1
-
TestMybatis
C# 中如何使用mbatis.net对数据库持久化编程。
让开发更加方便(How to use mbatis.net to the persistence in C# programming.
Make development more convenient)
- 2015-04-24 14:50:06下载
- 积分:1
-
calculator
说明: 可以进行简单的加减乘除及小数运算,可以实现连续运算,不能做负数运算(Simple addition, subtraction, multiplication, division and decimal operations can be performed, continuous operations can be realized, and negative operations cannot be performed.)
- 2020-09-13 13:33:25下载
- 积分:1
-
printer
打印功能模仿,和模拟打印机差不多的东西,不是自己编写的。(Print function to imitate, and simulation similar printer, not something I have written.)
- 2009-04-23 20:38:51下载
- 积分:1
-
Least-squares
在visual c++6.0的环境下,使用C++语言编写的最小二乘法程序。(In visual c++6.0 environment, using C++ language least squares procedure.)
- 2011-06-24 14:33:54下载
- 积分:1