-
DDE
本程序的作用,完成了一种图像的DDE算法,数字图像细节增强。(The role of this procedure, the completion of an image of the DDE algorithm, digital image detail enhancement.)
- 2021-02-02 22:49:59下载
- 积分:1
-
Visual C#对 XML操作的演示示例集
这是一个C#操作XML文件的示例集,可完成 如下功能演示:
枚举XML集合中的元素名称
枚举XML集合中的元素文本
判断XML元素在集合中是否存在
筛选XML中的子代元素集合
使用链接轴方法枚举XML元素
根据元素属性查找XML元素
根据元素名称查找XML元素
根据元素属性和名称查找XML元素
根据中间计算值查找XML元素
比如枚举XML集合中的元素文本:private void button2_Click(object sender, EventArgs e)
{//枚举XML集合中的元素文本
XElement MyXElements = new XElement("Root",
new XElement("贵州省", "贵阳市"),
new XElement("四川省", "成都市"));
IEnumerable MyXElement =
from MySelect in MyXElements.Elements()
select MySelect;
string MyInfo = "元素文本包括:";
foreach (XElement MyValue in MyXElement)
MyInfo += MyValue.Value + "、";
//显示:贵阳市、成都市
MessageBox.Show(MyInfo, "信息提示", MessageBoxButtons.OK);
}
- 2022-03-14 22:11:51下载
- 积分:1
-
MFC动态绘制曲线图控件HighSpeedChart
功能强大的MFC动态绘制曲线图控件,开源代码,可以添加头文件源文件到工程文件进行调用
High-speed Charting Control - CodeProject https://www.codeproject.com/Articles/14075/High-speed-Charting-Control
A flexible charting control to display 2D data
- 2022-12-05 23:45:03下载
- 积分:1
-
Snake_C
说明: 贪吃蛇源码c++实现,经典游戏编程,适合爱好者学习(Snake Source c++ implementation, the classic game programming for fans to learn)
- 2010-04-25 17:39:12下载
- 积分:1
-
cylender
draw cylinder and cube c++ opengl
- 2012-06-05 09:27:02下载
- 积分:1
-
20052938PortScan
FTP端口的代码,也是书上的例题,虽然很小,但是很基础,帮助你们理解(FTP port code, is also a book example, although very small, it is the basis to help you understand)
- 2008-05-21 15:43:11下载
- 积分:1
-
RasofDial
一个用VC做得简单实用得类似拨号上网软件。很简单,对于哪些做监控等等得人很有用(VC done a simple and practical in a similar dial-up software. Very simple, monitoring, etc. What do useful to the right people)
- 2006-06-01 03:23:33下载
- 积分:1
-
c++学生管理系统
一个学生信息管理系统。用的是MFC ODBC来完成的。在成绩管理系统中,当查询到记录后要刷新,使所有的记录从新显示出来的话,如果系统中存在7000条记录的话,刷新一次的时间要20多秒钟,处理后,可以在用户查询后,在不到一秒中的时间内来完成刷新。另:用户名:good,密码:py(a student information management system. The MFC ODBC to be completed. The performance management system, when inquiries to the record to refresh so that all the records show that the new, and if there System 7000 record of the case, set a time of more than 20 seconds and processed, the user can inquiry, in less than one second of time to complete the update. Another : Username : good, Password : py)
- 2005-07-30 10:24:44下载
- 积分:1
-
资料汇总 杨秀珠
说明: 在单片机上用C语言实现煤气报警器,一旦煤气浓度超过预制,就会报警(Gas Alarm Based on Single Chip Microcomputer)
- 2019-03-29 11:47:16下载
- 积分:1
-
图像检索系统
在检索原理上,无论是基于文本的图像检索还是基于内容的图像检索,主要包括三方面:一方面对用户需求的分析和转化,形成可以检索索引数据库的提问;另一方面,收集和加工图像资源,提取特征,分析并进行标引,建立图像的索引数据库;最后一方面是根据相似度算法,计算用户提问与索引数据库中记录的相似度大小,提取出满足阈值的记录作为结果,按照相似度降序的方式输出。
- 2022-01-26 00:01:01下载
- 积分:1