联合开发网   搜索   要求与建议
                登陆    注册
排序按匹配   按投票   按下载次数   按上传日期
按分类查找Pascal/Delphi编程(174) 网络编程(52) Windows编程(48) 其他(30) 网络编程(18) 游戏引擎(15) 其他行业(11) ICQ/即时通讯(8) Delphi/CppBuilder(8) 系统编程(7) 系统/网络安全(7) 游戏(7) 远程控制/远程桌面(6) P2P编程(6) TCP/IP协议栈(6) 模拟服务器(6) 数据库编程(5) 通讯编程(5) 打印编程(5) WEB开发(5) 企业管理(5) 界面编程(4) 其他小程序(4) 扫描程序(4) 进程与线程(4) 前端开发(4) 源码/资料(3) 网络截获/分析(3) C#编程(3) 文件操作(3) SQL Server(3) 单片机开发(3) SNMP编程(3) ActiveX/DCOM/ATL(2) 加密解密(2) 组合框控件(2) 数据库系统(2) 串口编程(2) 模式识别(视觉/语音等)(2) 其他数据库(2) 软件设计/软件工程(2) OpenGL(1) Internet/IE编程(1) 钩子与API截获(1) 驱动编程(1) 通讯编程(1) 多媒体(1) 图形图象(1) 压缩解压(1) 多国语言处理(1) 语音合成(1) Java编程(1) *行业应用(1) Web服务器(1) 浏览器(1) 代理服务器(1) WEB邮件程序(1) 防火墙与安全工具(1) Telnet客户端/Shell(1) 搜索引擎(1) IP电话/视频会议(1) 菜单(1) 工具条(1) DirextX编程(1) 图形图像处理(1) 流媒体/Mpeg4/MP4(1) 技术管理(1) 对话框与窗口(1) xml/soap/webservice(1) 嵌入式/单片机/硬件编程(1) J2ME(1) 书籍源码(1) 系统设计方案(1) TAPI编程(1) 破解(1) 视频捕捉采集剪辑(1) 金融证券系统(1) 教育系统应用(1) 邮电通讯系统(1) 医药行业(1) Oracle数据库(1) uCOS/RTOS(1) 其他嵌入式/单片机内容(1) GIS/地图编程(1) 图片显示(1) 人工智能/神经网络/深度学习(1) 绘图程序(1) VC书籍(1) Java书籍(1) 棋牌游戏(1) 其他游戏(1) 酒店行业(1) GPS编程(1) .net编程(1) 
按平台查找All Delphi(544) 

[前端开发] leach协议MATLAB仿真

LEACH是无线传感网早期经典的低功耗自适应分层分簇协议,该协议的主要目标是采用分布式簇群形成技术,通过周期性的轮换簇头,使网络能耗较为均匀的分摊到网络的各个节点。文件中提供了几种代码希望可以给需要的人一些参考。 (2022-07-06, Delphi, 525KB, 下载0次)

http://www.pudn.com/Download/item/id/1657084680389563.html

[其他] ASB Video

基于ABS视频采集、车牌识别采集卡,并逐步应用到图像采集系统,接口通讯接口1个RJ45 10M/100M自适应以太网口
The acquisition card has become an integral part of the hardware of the image acquisition system, and is gradually applied to the image acquisition system. The interface communication interface is an RJ45 10m / 100M adaptive Ethernet interface (2020-04-04, Delphi, 19KB, 下载0次)

http://www.pudn.com/Download/item/id/1585955150391127.html

[网络编程] ping

本程序检测统计同一网段的电脑在线情况,功能比较单一是给新手学习的.老鸟就绕过了
This program detects and counts the online situation of the computer in the same network segment. The function is relatively simple for novices to learn. Old birds bypass it. (2019-03-13, Delphi, 229KB, 下载2次)

http://www.pudn.com/Download/item/id/1552482470120574.html

[Pascal/Delphi编程] 3

这个Delphi通信网关平台已经实现了多线程,并且现在有些通讯商还正在使用,而且做一下简单的修改就能应用到移动、网通等通信系统
This Delphi communication gateway platform has realized multi-threading, and now some communicators are still using it, and a simple modification can be applied to mobile, Netcom and other communication systems. (2018-11-12, Delphi, 845KB, 下载1次)

http://www.pudn.com/Download/item/id/1541986675458516.html

[Pascal/Delphi编程] AutoUpgrader.Pro.v4.6.4

先进的自动分类组件,允许制作你的软件 “自动升级”软件没有单行代码!它包含 内置的“应用程序更新向导”,内置多语言 支持自动识别用户PC上使用的语言 以本地语言显示所有消息。AutoUpgrader罐头 从Web或本地内网下载文件。
Automatic upgrade control (2018-06-06, Delphi, 2588KB, 下载5次)

http://www.pudn.com/Download/item/id/1528249286908792.html

[图形图像处理] DetectEyes

运用C++检测人眼, 2)用opencv中检测人脸、眼睛、嘴巴等都是用的CascadeClassifier分类器,具体使用时可以使用C的函数,也可以使用opencv中使用C++封装好的类。下面是它们检测目标时的函数形式(从opencv官网复制的) C: CvSeq* cvHaarDetectObjects(const CvArr* image, CvHaarClassifierCascade* cascade, CvMemStorage* storage, double scale_factor=1.1, int min_neighbors=3, int flags=0, CvSize min_size=cvSize(0,0), CvSize max_size=cvSize(0,0) ) C++: void CascadeClassifier::detectMultiScale(const Mat& image, vector<Rect>& objects, double scaleFactor=1.1, int minNeighbors=3, int flags=0, Size minSize=Size(), Size maxSize=Size()) 这两者最大的区别在于,用C封装的函数要自己手动分配内存,而用C++的形式则不用自己去分配内存,这就是很多同学在网上找到的代码有些要分配内存,有些又不用分配内存的原因。显然C++的形式更简洁,所以我下面的代码也是用的C++的函数。
Detected with opencv face, eyes, mouth, etc. are used CascadeClassifier classification, you can use C functions specific use, you can use opencv use C++ classes packaged. Here is the form of the function when they detect target (copied the opencv official website) (2015-09-30, Delphi, 2593KB, 下载18次)

http://www.pudn.com/Download/item/id/1443594779777477.html

[Pascal/Delphi编程] photomanage

参考网络资源修改的一个应用于疑犯相片鉴别的管理系统,由delphi2010环境开发,无第三方控件,功能:1、归类相片管理,可自由拖放次序;2、可根据某特证生成比对集,也可手动编辑比对集,3、生成WORD打印文档,4、修改编辑压缩相片等。来源于网,回馈于网,欢迎指证。
Reference network resources used to modify a suspect photo identification management system, developed by the delphi2010 environment, no third-party control, function: 1, classified photo management, you can drag and drop the order 2, can be generated under a special permit comparison set, you can manually edit the matching sets, three, generate WORD print the document, four, modify edit compress photos and so on. From the network, the feedback on the website, welcome to testify. (2013-08-27, Delphi, 2572KB, 下载10次)

http://www.pudn.com/Download/item/id/2340397.html

[Pascal/Delphi编程] 360SafeDemo

此源码是采用directui开发的,由于开发环境没有directui这一项,所以才选择的Delphi,请大家记住是:directui,http://www.qiansf.com传奇发布网,希望你能喜欢
This source is used directui developed, due to the development environment does not directui this one, so just choose Delphi, please remember that: directui, http://www.qiansf.com legend publish network, hope you like it (2013-05-29, Delphi, 4957KB, 下载7次)

http://www.pudn.com/Download/item/id/2263246.html

[网络编程] autoip

自动读取MAC并生成配置文件,也可以根据配置文件,检测MAC设置IP,子网掩码,DNS等,并设置相应的计算机主机名而不需要重新启动机器
Automatically read MAC and generate configuration files, can also according to the configuration file, detection of MAC set IP, subnet mask, DNS, and set the corresponding computer host name without the need to reboot the machine (2012-01-06, Delphi, 6KB, 下载7次)

http://www.pudn.com/Download/item/id/1752032.html

[Pascal/Delphi编程] vgafenbianlv

静默修改屏幕分辨率为自己指定的分辨率。无窗口显示,修改的时候屏幕闪一下就好了!适合网吧装过系统发现分辨率需要修改,开机调用执行。
Modify the screen resolution for their silent specified resolution. No window display, modify, when the screen flashed like it! Had installed the system for Internet cafes that need to modify the resolution, turn calls execution. (2011-11-29, Delphi, 6KB, 下载5次)

http://www.pudn.com/Download/item/id/1715115.html

[网络编程] 201091315215360

局域网监控一线通 源代码 可用做 企业电脑监控、局域网远程控制、机房监控管理、网吧电脑监视、多媒体教学、屏幕录制、局域网聊天等方面。通过简单而实效的操作,达到实时操作、安全控制、录制监控屏幕(avi视频格式)、文件上传、下载等目的。无需繁冗的通知,随时直接与被监控端进行沟通交流。
LAN Monitoring Personal Emergency source code can be used enterprise computer monitor, LAN remote control, room monitoring and management, Internet cafe computer monitor, multimedia, screen recording, LAN chat and so on. Through simple and effective operation, to achieve real-time operation, security control, recording monitor screen (avi video format), file upload, download and other purposes. Onerous without notice at any time direct communication between the monitored side. (2011-02-28, Delphi, 598KB, 下载76次)

http://www.pudn.com/Download/item/id/1440035.html

[模式识别(视觉/语音等)] yanzdemo

程序能识别网络90 以上的论坛验证码和一些简单的网站验证码,从图片中正确识别出数字和字母。 程序对矢量随机的验证码,如动网7.1sp2最新验证码亦有80 以上识别率。已经突破了dvbbs,discuz,phpwind,leoboard,ipb 等论坛的验证码限制。
程序能识别网络90 以上的论坛验证码和一些简单的网站验证码,从图片中正确识别出数字和字母。 程序对矢量随机的验证码,如动网7.1sp2最新验证码亦有80 以上识别率。已经突破了dvbbs,discuz,phpwind,leoboard,ipb 等论坛的验证码限制。 (2010-12-01, Delphi, 1089KB, 下载54次)

http://www.pudn.com/Download/item/id/1365330.html

[SQL Server] sms_code

04年的时候给网通公司做一个小灵通群发短信的软件源码,采用SQLSERVER数据库,动态连接,对初学数据库者有很大参考价值
In 2004, when China Netcom Corporation to make a PHS mass SMS software source code, using SQLSERVER databases, dynamically linked, for beginners who have great reference value for the database (2010-02-28, Delphi, 1754KB, 下载4次)

http://www.pudn.com/Download/item/id/1071719.html

[Pascal/Delphi编程] ADSLcount

ADSL上网计时程序,自动检测因特网联接,每分钟更新一次计费时间,自动检测是否超过19.5小时,主要给计时的ADSL用户的。
ADSL Internet access timing procedures, automatically detects the Internet connection, updated every minute billing time, automatically detect if more than 19.5 hours, mainly to the timing of the ADSL users. (2009-11-10, Delphi, 847KB, 下载21次)

http://www.pudn.com/Download/item/id/965300.html

[Java书籍] aaaa

基础类将帖子提前 放进我的网摘 推荐给好友 我要提问 帖子加分 生成帖子 置顶 推荐(加如何将数转换为数字
Category will be based on early post into the net I picked recommend to friends I would like to post questions to generate extra points Top Recommended posts (plus how to digital converter for digital (2008-12-03, Delphi, 9KB, 下载1次)

http://www.pudn.com/Download/item/id/595048.html

[Pascal/Delphi编程] delphi_Source_analys

delphi源代码分析源码,delphi源代码分析一书由于较多,等网张较好时再上传,先传源码,希望用得着的同时
delphi source code analysis source code, delphi source code analysis of a book as a result of more, and better at the net, and upload the first Chuan-source, I hope at the same time useful (2008-05-27, Delphi, 208KB, 下载12次)

http://www.pudn.com/Download/item/id/474642.html

[企业管理] yeji

一. 目的: 编写出 研发部业绩分配计算系统. 二. 功能: 包括 1.人员档案 2.基本数据录入(本季度总抽层,小产品非订制业绩,小产品订制业绩,ERP非订制业绩,ERP订制业绩) 3.查询 4.统计(计算出每个研发部成员的应得业绩).
1. Objective: To prepare the distribution of R (2008-01-24, Delphi, 1994KB, 下载9次)

http://www.pudn.com/Download/item/id/398836.html

[Pascal/Delphi编程] mycapture

把网卡设置成混杂模式,实现数据包的监听。并解包TCP,UDP,IP等协议。利用DELPHI开发
card set to put hybrid model, data packet sniffer. And unpacked TCP, UDP, IP and other agreements. Using DELPHI (2007-04-23, Delphi, 208KB, 下载204次)

http://www.pudn.com/Download/item/id/272018.html

[TCP/IP协议栈] NetExplorer

捕获流经指定网卡的数据,协议:ICP、UDP、ICMP。可以以二进制方式、文本方式流程数据,可设置规则,可保存数据。
flowing through designated capture card data, the agreement : ICP, UDP, ICMP. Be in binary mode, text mode data flow can be set up rules, the retention of data. (2007-01-06, Delphi, 373KB, 下载91次)

http://www.pudn.com/Download/item/id/239918.html

[Windows编程] sltemp

屏蔽ctrl+x剪切功能 有的时候真的很讨厌人家乱用这个 笔者是网吧业主 别人无法删除我的文件 剪切就走了 很火 合乎 delphi写的
shielding ctrl x shear function sometimes really hate people to abuse this writer is no other owners of Internet cafes France delete my files shear away with the fire is written in Delphi (2006-04-11, Delphi, 171KB, 下载7次)

http://www.pudn.com/Download/item/id/169825.html