-
mvdr.rar-mvdr
this is the matlab algorithm for mvdr beam forming
- 2014-04-26 00:44:12下载
- 积分:1
-
pwm_lcd
说明: 在STM32开发板上实现用光敏电阻控制LCD屏幕的亮度。(The brightness of LCD screen is controlled by photoresist on STM32 development board.)
- 2020-11-08 09:39:47下载
- 积分:1
-
ST7920带中文字库液晶原码程序
说明: ST7920带中文字库液晶原码程序 12864 keil的,串行方式 编写时已经考虑到往avr上的移植了,spi可以用avr硬件的,也可以用io模拟,甚至可以用mega48的串口做spi主机
,经过我的测试串行方式,在cs无效时,7920还是可以接受数据,导致显示被误改,如果spi上接了其它器件,小心使用。(Driver with the original Chinese font LCD procedure code 12864 Keil. Serial way has been prepared to take into account the transplant avr, 20 avr hardware can be used, io can also use the simulation, or can even be done Serial mega48 20 mainframe, I have serial testing, cs in vain, 7920 can still receive data, resulting in the misuse of reform shows that if 20 on to other devices, careless use.)
- 2020-09-13 10:08:00下载
- 积分:1
-
MegaPirateNG_2.5.1_R3
用于四轴飞行器的海盗飞控源代码。硬件基于Arduino MEGA2560。(Pirates for four-axis aircraft fly control source code. The hardware is based on Arduino MEGA2560.)
- 2012-07-17 12:19:58下载
- 积分: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
-
Region-Dense
基于区域的稠密立体匹配方法(论文)
关键词:种子点;区域增长;稠密匹配(Based on Region Dense Three—dimensional Match Method)
- 2012-03-16 11:24:09下载
- 积分:1
-
检测基于跟踪使用 opencv
要跟踪 OpenCV 工作面使用以下步骤 ︰
Opencv2/contrib 里面的头文件是已经推动了或正在实验程序声明的参数所需的跟踪程序运行
所有参数都大多相同,您使用哈尔瀑布。
用级联的选择与参数结构叫建设者。
类对象是在灰度图像上运行的。
结果是一个向量附上被跟踪对象的矩形。
使周围检测到的对象的矩形。
和现在把它放到图像。
显示的结果。
- 2022-07-24 11:58:51下载
- 积分:1
-
库存管理系统源码
主要功能库存管理系统主要由1 货物管理2 基本档案3 查询统计4 系统维护5 帮助等模块组成进入该系统后,用户可以对系统中的一些基本信息进行添加、修改和删除等操作。另外,如果是管理员登录,还可以对用户的权限、用户名和密码进行修改。
- 2014-11-09下载
- 积分:1
-
防尾随安全门系统
说明: 32控制的防尾随门,主要应用于银行安检防盗门(32-controlled anti-tail door)
- 2019-03-27 07:47:05下载
- 积分:1
-
C# SelectedItem选择移动数据项 点菜功能
这是个实用的小功能,在WEB开发时也经常会看到这种功能,将item数据项由左侧移动到右侧,这是一个选择+移动的功能,全部添加到选择的项中,判断是否已经选择了该菜单项,比如本例子利用左右移动SelectItem项实现了点菜功能:
private void button3_Click(object sender, EventArgs e)//移除所有已经选择的菜
{
lbChoose.Items.Clear();
}
private void button1_Click(object sender, EventArgs e)//单个添加到选择的项中
{
if (lbSocure.SelectedIndex != -1)
{
if (!lbChoose.Items.Contains(lbSocure.Text))//判断是否已经选择了该菜
lbChoose.Items.Add(lbSocure.SelectedItem.ToString());//添加选择的菜
else
MessageBox.Show("您已经选择了该菜,请重新选择。");
}
}
- 2022-06-13 08:29:58下载
- 积分:1