-
Cell-tracking
自己编程实现对通道里的细胞的跟踪,标注,计算,并计算细胞的面积、周长、个数、并能判断2种细胞(Their programming implementation of the cells in the channel tracking, tagging, computing, and calculate the cell area, perimeter, number, and can determine two kinds of cells)
- 2014-04-02 16:08:22下载
- 积分:1
-
STM32PSI4463
基于STM32的SI4463的程序,分为收发两个部分,可变数据长度,可以设置发射功率,带RSSI(The SI4463 based STM32 program, divided into two parts transceivers, variable data length, you can set the transmit power, with RSSI)
- 2020-11-19 16:29:38下载
- 积分:1
-
netdisk
baidu netdisk download tool
- 2020-06-19 06:00:01下载
- 积分:1
-
wcf 通过header 验证用户名密码例子源码(无须证书)
wcf 通过header 验证用户名密码例子源码(无须证书)
- 2015-01-05下载
- 积分:1
-
Image-recognition
图像识别技术及其在机械零件无损检测中的应用(Image recognition technology and its application in mechanical parts NDT Applications)
- 2013-11-16 11:00:17下载
- 积分:1
-
2
说明: matlab 中很实用的源代码2:中值滤波器、用Sobel算子和拉普拉斯对图像锐化,梯度算子检测边缘(Practical source code of matlab)
- 2015-04-20 16:24:55下载
- 积分:1
-
基于51单片机指纹识别源码
可以非常精确的对指纹进行采集,储存,并加以识别验证,本程序是基于51单片机的源码,实测可靠,可行。并且可以适用在lcd1602显示屏上相对应的指纹信息,还加有指示灯与蜂鸣器加以指示。
- 2023-06-04 10:35:03下载
- 积分:1
-
C# 在密钥容器中创建非对称密钥
在密钥容器中创建非对称密钥、在密钥容器中删除非对称密钥、在密钥容器中获取非对称密钥,具体的实现代码,请参考如下代码:
private void button1_Click(object sender, EventArgs e)
{//在密钥容器中创建非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textBox2.Text;
RSACryptoServiceProvider MyRSA = new RSACryptoServiceProvider(MyCSP);
this.textBox1.Text=MyRSA.ToXmlString(true);
}
private void button2_Click(object sender, EventArgs e)
{//在密钥容器中删除非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textBox2.Text;
RSACryptoServiceProvider MyRSA = new RSACryptoServiceProvider(MyCSP);
MyRSA.PersistKeyInCsp = false;
MyRSA.Clear();
try
{
this.textBox1.Text = MyRSA.ToXmlString(true);
}
catch
{
this.textBox1.Text = "已经删除非对称密钥!";
}
}
private void button3_Click(object sender, EventArgs e)
{//在密钥容器中获取非对称密钥
CspParameters MyCSP = new CspParameters();
MyCSP.KeyContainerName = this.textB
- 2022-02-06 13:18:17下载
- 积分:1
-
C_sharp_Matrix_class
文件为C#矩阵运算类,包含了多种形式的矩阵定义,能够进行多种矩阵运算,如矩阵四则运算、求逆、转置等,十分方便用于实际开发。(File for the C# matrix operations class, contains the definition of various forms of matrix, to carry out a variety of matrix operations, such as matrix arithmetic, inversion, transpose, etc., is very convenient for actual development.)
- 2010-07-10 19:40:51下载
- 积分:1
-
PML_10
交错网格声波方程正演模拟,PML吸收边界,比较适合刚刚接触的学者。交错网格有限差分地震波场计算,二维的声波正演,利用空间10阶,时间2阶。(The CalCulation of the SeismiC Wave一 fieldwith Staggered-grid Finite difference Sheme)
- 2014-01-09 08:54:14下载
- 积分:1