-
UKF
无迹卡尔曼滤波算法的c语言。网上找到的,貌似是老外编的,蛮不错的。(unscented kalman filter code of visual c.)
- 2021-01-05 15:08:54下载
- 积分:1
-
双通道的ADC采集
STM32单片机通过PA IO口采集ADC信号并通过串口传输到上位机。
- 2022-02-02 22:06:07下载
- 积分:1
-
派生于CEdit控件,针对变量名,数值,限制输入
//*********************************** CHawkvisEdit ******************
//深圳市霍克视觉科技有限公司,http://www.hawkvis.com 2016-04-02
//*******************************************************************
//1.自定义控件,派生与 CEdit, 重载了OnChar()
//2.定义枚举类型,指定控件可用于输入数值,输入变量名,一般的字符串变量, 通过SetMode指定输入为何种类型变量
//3.整型数值类型: 有效按键是数字和负号正号和回退键,可设置数据长度限制
//3.浮点数值类型: 有效按键是数字和负号正号小数点和回退键,可设置数据长度限制,小数点后位数限制
//4.变量名类型: 有效按键是大小写字母,数字,下划线,退格键
- 2023-04-30 11:10:07下载
- 积分:1
-
Windows网络服务器程序的开发,在毫无疑问,Winsock完成…
在WINDOWS下进行网络服务端程序开发,毫无疑问,Winsock 完成端口模型是最高效的。Winsock的完成端口模型借助Widnows的重叠IO和完成端口来实现,完成端口模型懂了之后是比较简单的,但是要想掌握Winsock完成端口模型,需要对WINDOWS下的线程、线程同步,Winsock API以及WINDOWS IO机制有一定的了解。如果不了解,推荐几本书:《Inside Windows 2000,《WINDOWS核心编程》,《WIN32多线程程序设计》、《WINDOWS网络编程技术》。在去年,,我决定用C++重写这个WEBSERVER,给这个WEBSERVER增加了一些功能,并改进完成端口操作方法-under the Windows network server program development, no doubt, Winsock completed port model is the most efficient. Winsock port model with complete preview of overlap and complete port IO to achieve complete port after the model to understand is a relatively simple, but want to know the complete Winsock port model, the need for the Windows threads, thread synchronization, Winsock API and Windows IO mechanism of a certain understanding. If we do not understand, recommended several books : "Inside Windows 2000," Windows core programming "," WIN32 multithreaded programming "," WINDOWS network programming technology. " Last year, I have decided to rewr
- 2023-06-25 21:45:03下载
- 积分:1
-
dxocclusion
hi....its a program rendering trees in opengl and directx
- 2009-11-21 18:43:13下载
- 积分:1
-
testIfArgFunction
This program is testing the function
- 2014-09-05 14:56:40下载
- 积分:1
-
STM32 + W5500 连接云端 HTTP 远程 下载自动 更新
STM32F1 + W5500 项目程序 完成功能 自动 MAC地址 解决没有MAC地址的难题 并且MAC地址 几乎没有重复的
完成PING DHCP DNS TCP HTTP 等功能 ,。 这个是全部同时执行 不是官方的例程 一个个 等死 while
上电自动更新APP
每 4秒 自动 检测 网线有没插入 网线一插入 自动 DHCP 分配IP地址
每2秒自动 检测 有无连接 因特 网
连网后,会按自己设置的服务器 网址 ,执行DNS 解析 得出IP地址 然后 连接服务器
其它不一一说明 有意扣扣85500965
- 2022-03-12 16:26:09下载
- 积分:1
-
ImportRegPol-source
ImportRegPol is a non-interactive tool that imports the settings from a Registry Policy (registry.pol) file into the Computer or User configuration of the local group policy of the current computer. It can also parse a registry.pol file and produce an editable text file that can be consumed by Apply_LGPO_Delta v2.0.
- 2014-07-13 20:47:46下载
- 积分:1
-
C# wpf 创建简单形状动画的例子
C# wpf 创建简单形状动画的例子,启动动画、停止动画、暂停动画、继续动画、加速动画。创建动画
Rectangle MyRectangle = new Rectangle();
MyRectangle.Width = 50;
MyRectangle.Height = 20;
MyRectangle.Margin = new Thickness(10, 50, 0, 0);
MyRectangle.Fill = new LinearGradientBrush(
Color.FromArgb(255, 0, 255, 255), Color.FromArgb(255, 0, 0, 255), 0);
MyRectangle.HorizontalAlignment = HorizontalAlignment.Left;
this.canvas1.Children.Add(MyRectangle);
this.RegisterName("MyRectangle", MyRectangle);
DoubleAnimation MyAnimation =
new DoubleAnimation(100, 380, new Duration(TimeSpan.FromSeconds(5)));
Storyboard.SetTargetName(MyAnimation, "MyRectangle");
Storyboard.SetTargetProperty(MyAnimation,
new PropertyPath(Rectangle.WidthProperty));
MyStoryboard = new Storyboard();
MyStoryboard.Children.Add(MyAnimation);
动画效果请参见下图所示,源代码请单击下载按钮下载。
- 2022-08-25 13:04:57下载
- 积分:1
-
Shi-Tomasi提取算法
在opencv+VS2013平台上实现Shi-Tomasi提取算法,可在图片上绘画出Shi-Tomasi特征点
- 2023-04-24 00:00:03下载
- 积分:1