-
HOG
基于HOG的行人检测,作者的源代码有错误,现代码已经进行了改变,并可以调试通(Histograms of Oriented Gradients for Human Detection, the writer s code has some errors, and I have correct the errors, and the code is right under C++ buidler)
- 2020-06-25 23:00:01下载
- 积分:1
-
MioStar_0_2
DLLInjector DLLInjector source code
MioStar MioStar source code
MioStar GUI MioStar GUI source code
MioStar Application All pieces assembled togheter. Run the MioStar GUI.exe to run it.
the rest should be self explaining.
- 2014-09-03 16:47:52下载
- 积分:1
-
32程序测频率。mini板可达20M
可用于高频检测,程序内注释很多,要接的引脚已经表明,自己在电子科技竞赛用的程序,只要最小的32最小系统就足够了,不会出现不兼容问题,若是是需要低频精度检测可在下载后的评论里留言。
- 2022-08-15 01:42:05下载
- 积分:1
-
sequence
我用VC++实现程序的顺序执行,即前驱关系
从P1-->P2前驱图的顺序执行的实现(sequence)
- 2021-01-12 21:58:48下载
- 积分:1
-
SC7A20加速度传感器驱动
SC7A20 acceleration sensor driver, including application documentation, with register instructions.
- 2019-07-08 02:47:10下载
- 积分:1
-
copyTESt
这是怎么了 等等 用友 cell的使用(This is how and so forth)
- 2010-01-21 21:30:57下载
- 积分:1
-
51单片机 温度传感器1602液晶显示
说明: 基于51单片机,芯片STC89C52,用LCD1602屏调试温度传感器的实验源代码(Test source code of temperature sensor with LCD1602 screen based on 51 single chip computer and STC89C52 chip)
- 2020-06-20 00:40:02下载
- 积分:1
-
RTC-DS1307-interfacing-with-PIC
Real time Clock DS1307 interacing with PIC using I2C.
- 2013-03-06 13:52:42下载
- 积分:1
-
dockpanelsuite-code-r115-trunk
C # controls that implement suspended panel, just like the toolbox in vs
- 2019-05-01 21:01:35下载
- 积分:1
-
测试链接并显示查询数据
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;//Download by http://down.liehuo.netusing System.Data.SqlClient;namespace Case05_12{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { try { //生成连接数据库字符串 string ConStr = "data source=.;database=ljp;uid=sa;pwd=123"; //定义SqlConnection对象实例 SqlConnection con = new SqlConnection(ConStr); //定义Select查询语句 string Sql = "select*from biaoge"; SqlDataAdapter ada = new SqlDataAdapter(Sql, con); DataSet ds = new DataSet(); //定义DataSet对象实例 ada.Fill(ds); //连接数据表格,显示数据 this.dataGridView1.DataSource = ds.Tables[0].DefaultView; } catch { return; } } private void button2_Click(object sender, EventArgs e) { this.Close(); Application.Exit(); } }}
- 2014-10-02下载
- 积分:1