-
vb编写的云台镜头控制。主要通过pc机的串口通讯。
vb编写的云台镜头控制。主要通过pc机的串口通讯。-vb prepared pan and camera control. Pc machine, mainly through the serial port communications.
- 2022-01-25 16:36:41下载
- 积分:1
-
这是一个书籍管理应用程序。系统要完成对书籍的管理,应包括类目管理:书籍的增加和删除;借阅管理:借出和还入;信息的查询等功能。...
这是一个书籍管理应用程序。系统要完成对书籍的管理,应包括类目管理:书籍的增加和删除;借阅管理:借出和还入;信息的查询等功能。-This is a book management application. To complete the system of management books, including Category Management : books on the increase and deleted; Readers management : the lending and also means; Information inquiries, and other functions.
- 2022-03-19 19:02:06下载
- 积分:1
-
这是一件好事,让事情在树上,我们会看
这是一个不错的东西,使一个关于树的东西,大家可以看看
-This is a good thing, so that things on the tree, we will look at
- 2023-08-19 08:30:03下载
- 积分:1
-
MOTO
MOTO-V3Icopy手机电路图,学习先进思想的电路设计-MOTO- V3Icopy phone circuit, and to learn from the advanced thinking of the circuit design
- 2022-03-16 01:21:27下载
- 积分:1
-
双线性变换法无限长单位脉冲响应滤波器的设计,用到的模拟原型是切比雪夫和巴特沃斯低通滤波器。能够显示滤波器的幅频特性和相频特性曲线...
双线性变换法无限长单位脉冲响应滤波器的设计,用到的模拟原型是切比雪夫和巴特沃斯低通滤波器。能够显示滤波器的幅频特性和相频特性曲线-bilinear transform infinite impulse response filter units in the design, use of simulation is a prototype and Chebyshev low-pass Butterworth filter. To demonstrate the filter frequency characteristics and phase frequency response curve
- 2022-02-27 02:27:12下载
- 积分:1
-
CDMA系统中的有关多用户检测的MATLAB仿真程序和Simulink仿真模型...
CDMA系统中的有关多用户检测的MATLAB仿真程序和Simulink仿真模型-CDMA systems on multi-user detection of MATLAB and Simulink simulation model simulation program
- 2023-02-03 12:55:04下载
- 积分:1
-
java version of Weiqi for U.S. exchanges and learning use
java版本的围棋,供大家交流和学习使用-java version of Weiqi for U.S. exchanges and learning use
- 2022-10-14 14:25:03下载
- 积分:1
-
凌阳 61
4*4键盘扫描程序
可以消除重键
凌阳 61
4*4键盘扫描程序
可以消除重键 -Sunplus 614* 4 keypad scanner can eliminate re-key
- 2022-05-19 07:45:51下载
- 积分:1
-
可以精确计算地图的椭球面积,是根据国土局的文件用C#编程出来的,对搞测绘的人有帮助哦...
可以精确计算地图的椭球面积,是根据国土局的文件用C#编程出来的,对搞测绘的人有帮助哦-Can be precisely calculated ellipsoid area of the map is based on the Land Bureau of the documents C# Programming out of people who engage in surveying and mapping has helped Oh
- 2022-07-26 14:05:03下载
- 积分:1
-
CoStream 无缓存 Pipe Stream
翻译 maninwest@Codeforge 作者:Sergey Nozhenko@CodeProject介绍:CoStream 是的 PipeStream 无缓存替代选择。背景在生产者/消费者模式下,如果我们知道一个消费者确定要读取stream 读到结束或者如果不能读到结束就处理,那么同步stream 就不需要维护自己的内部缓存,完全依赖于 Read 方法调用者的缓存。在Read 方法中,CoStream 保存到目标缓存的引用并等待,直至完成。而 write 方法从源缓存中复制数据到目标缓存,会给读取者发送信号缓存已准备就绪或者需要等待期 Read 调用(如果来源缓存中有未消耗的数据剩下或者返回到Writer 调用者)。使用代码CoStream 不能在单个话题中使用。应该至少有两个,读取和写入话题。两者都需要关闭(或处理)stream,一边对方可以继续到结束。测试程序在 XmlDocument 中加载了一些 xml 文件。然后将其写入到 CoStream 的实例Static CoStream costream = new TestCoStream();
static string outpath;
static void Main(string[] args)
{
// ...
XmlDocument doc = new XmlDocument();
doc.Load(args[0]);
outpath = args[1];
var reading_thread = new Thread(ReaderBody);
reading_thread.Start();
using (var pipe = XmlWriter.Create(costream, new XmlWriterSettings { CloseOutput = true }))
doc.Save(pipe);
reading_thre
- 2022-03-17 17:34:17下载
- 积分:1