-
CommMFC
WinCE操作系统上串口接收及发送程序,VC++程序,有界面,简单易懂。(WinCE operating system serial port receive and transmit procedures, VC++ program, interface, easy to understand.)
- 2013-09-01 20:02:12下载
- 积分:1
-
car_pole_system_upload_ver
Reinforcement Learning 中以 Q learning 學習的倒單擺實驗。以x,x_dot,theta,theta_dot作為狀態參數 state,利用model模擬之結果做Q值更新,產生Q table,對學習平衡控制。結果以csv檔作為輸出,可以由使用者作圖觀察變化。(Reinforcement Learning , utilize Q learning for An inverted pendulum system control。x,x_dot,theta,theta_dot as state variable,use model result renew Q table,control learning of balance pole 。output csv file contain trail(times),balance time(sec).it s better observe the change if user plot it. )
- 2014-01-23 23:58:05下载
- 积分:1
-
MFCleikuxiangjie
MFC类库详解,编写MFC程序时很有用的资料(Useful information in the MFC class library Detailed writing MFC program)
- 2012-05-10 09:15:04下载
- 积分:1
-
c100
单片机实例学习,可以轻松学习单片机.请大家仔细专研。(SCM instance learning, you can easily learn microcontroller. To please carefully researched.)
- 2013-05-18 12:25:20下载
- 积分:1
-
LCD1602
Keil uvision4.0 环境下的MCS-51单片机入门学习例程!(Keil uvision4.0 environment MCS-51 microcontroller started learning routines!)
- 2013-06-12 20:19:53下载
- 积分:1
-
08320179
一个类似于word中选取表格规模的类,推荐给大家()
- 2017-11-21 07:42:51下载
- 积分:1
-
C#添加删除修改数据并生成Excel工作表格
C#添加删除修改数据并生成Excel工作表格,private void Button4_Click(object sender, EventArgs e)
{//新建工作表(在Excel文件型数据源中不支持删除操作)
var MyConnectString =@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=运货商.xlsx;Extended Properties=""Excel 12.0;HDR=YES"";";
var MyConnection=new OleDbConnection(MyConnectString);
if(MyConnection.State == ConnectionState.Closed)
MyConnection.Open();
var MySQL = "CREATE TABLE 新运货商(公司名称 char(50), 电话 char(20));";
var MyCommand=new OleDbCommand(MySQL, MyConnection);
MyCommand.ExecuteNonQuery();
MySQL = "INSERT INTO [新运货商$](公司名称,电话)VALUES ( +this.TextBox1.Text+,+this.TextBox2.Text+)";
MyCommand = new OleDbCommand(MySQL, MyConnection);
MyCommand.ExecuteNonQuery();
MySQL = "SELECT * FROM [新运货商$]";
var MyAdapter=new OleDbDataAdapter(MySQL, MyConnectString);
var MyTable=new DataTable();
MyAdapter.Fill(MyTable);
this.DataGridView1.DataSource = MyTable;
}
- 2022-03-16 02:17:15下载
- 积分:1
-
Robust scale-adaptive mean-shift for tracking
该算法是VOT2015的第20名官方推荐的实时算法,VOT2016的32名(中等水平),平均帧率125FPS,在经典mean-shift框架下加入了尺度估计,经典颜色直方图特征,
加入了两个先验(尺度不剧变+可能偏最大)作为正则项,和反向尺度一致性检查。(The algorithm is the real-time algorithm recommended by the 20th official VOT 2010, 32 (medium level) VOT 2010 6, average frame rate of 125 FPS, scale estimation and classical color histogram features are added in the classical mean-shift framework.
Two priors (scale unchanged + possible maximum) are added as the regular term and the reverse scale consistency check is added.)
- 2018-09-08 16:18:34下载
- 积分:1
-
在书上学到的代码
这是一个TCP服务器,是从书上学到的,希望对大家有点用处,第一次用这个网站,哈哈哈
- 2022-02-04 02:14:18下载
- 积分:1
-
gdal
说明: 简易的在c#中利用gdal来读取遥感图像(Using GDAL to read remote sensing image in C)
- 2020-05-17 19:12:13下载
- 积分:1