自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 资源 (17)
  • 收藏
  • 关注

原创 单网卡设置为多网关模式,满足局域网组网需求

裙子 python

2022-06-28 17:30:00 662 1

原创 图像处理之裙子自动分类(长裙,短裙,百褶裙。。。 python图像处理

裙子 python

2022-06-27 18:26:28 109

原创 轻轻问一下,现在买笔记本电脑,送外接键盘是什么心态

闲聊

2022-06-23 10:33:45 154

原创 一个网卡如何设置两个ip,(如何加装网卡,两网卡或多网卡)

硬件开发中,有时会需要连接多个网络硬件设备,这时就需要加装多网卡,一般台是电脑主板预留的有2-3的pci插槽,可以加装网上买的通用pci插槽网卡,但如果任然满足不了多网口的需求,现在可以购买一个pci插槽上带两个网口,三个网口,最多4个网口的网卡,所以可以多网卡,也可以一个网卡多网口,根据需要选型,满足公司开发需求。使用时安装测试,不使用了记得拆下清洗保养哦...

2022-06-23 10:27:22 1143

halcon 处理 海康 工业相机

halcon 处理 海康 工业相机

2022-07-18

python 操作海康威视工业相机资源,共12个例子

海康威视工业相机,python开发包,12个demo,打开相机,抓图,保存,事件保存等等

2022-07-18

delphi数字图像处理及高级应用书籍及随书源码

delphi 图像处理代码和书籍 亲测可用 delphi 图像处理代码和书籍 亲测可用 图像几何变换,图像灰度,二值化,图像代数和图像分割,图像通道采集

2017-10-09

Delphi 图片处理 二值化 任意角度旋转

Delphi 图片处理 二值化 任意角度旋转 Delphi 图片处理 二值化 任意角度旋转

2017-09-30

assess 查询分析器

免安装 绿色 通用所有asscess

2013-07-02

rc3控件安装包

rc3 delphi rz控件

2012-11-23

delphi 控件 备份 还原工具

delphi 控件 备份 还原工具

2012-11-16

DELPHI编程手册3.0.exe

DELPHI 编程手册 3.0

2012-11-13

socket编程原理.pdf

socket编程原理

2012-11-13

delphi2-delphi2010 全支持 dcu 装换 pas

delphi2-delphi2010 全支持 dcu 装换 pas -------------------------------------------------------------------------------- Project Dcu2Pas Version 1.3 Purpose Decompile a D2-D7, K1-K3's dcu(dpu) file to Delphi source as origin as possible, without or with minimal modifications, then recompile to new one under other Delphi versions Author Nengwen Zhuo(卓能文) Homes http://soarowl.uhome.net, http://www.websamba.com/soarowl, http://soarowl.0catch.com Emails [email protected], [email protected] Released 2003-02-10 Lastest home/dl/Dcu2Pas.rar(zip) FOR RESTORE YOUR LOST SOURCES AND OPTIMIZE YOUR CODES ONLY!!! -------------------------------------------------------------------------------- This project is in very early stage, no document yet. To see some features, reference my test cases file -- test.pas and the output file test.int, please. The output maybe more clear organised than source files!!! For further development, any suggestions and ideas are welcome. I have no time to update my homepages for a long time ;-) -------------------------------------------------------------------------------- Usage Run Dcu2pas, set properly options, select a desired dcu file double click to decompile it -------------------------------------------------------------------------------- Features - Supports the following type declarations and their typed consts: * Type redeclarations, for example: type MyTypeString = type String; * All integer types(Byte, Cardinal, Int64, Integer, Longint, Longword, Shortint, Smallint, Word) * All char types(AnsiChar, Char, WideChar) * All boolean types(Boolean, ByteBool, LongBool, WordBool) * Enumerated type, subrange of enumerated type and set of enumerated type For examples: type Size = (Small = 5, Medium = 10, Large = Small + Medium); TMySize = Medium..Large; type TEnumSet = set of (Club, Diamond, Heart, Spade); const vcSet4: TEnumSet = [Club,Spade]; * All real types(Comp, Currency, Double, Extended, Real, Real48, Single) * All string types(AnsiString, ShortString, String, String[XX], WideString) * Array type(with/without packed keyword), dynamic array and multidimensional dynamic array * Set type * Record type, with any variant parts in records. But if a record has any variant parts in it, the typed const may can't correctly decompile * Function/procedure type declaration - Support threadvar - Support resourcestring - Support class type, interface inheritation - Support object type - Support interface - Code decompiler to BASM, then a decpompiled file can recompile under other Delphi versions... - Code decompiler to Object-Pascal. I have some ideas, but I have no time, maybe in near future, I will code for it! -------------------------------------------------------------------------------- Update history Legend: - Bug fixed * Algorithm enhanced + New featuer added Ver2.0 Ver1.3 2003-02-10 * Code decompiler redesigned * Partly support D7 Ver1.2 2002-07-28 + Delete procedure, contructor, destructor frame 2002-07-18 + Procedure variable const + Now can distinguish: vc1: PChar ='test'; vc2: PChar = @vc1; 2002-05-28(Ver1.1) + Now correctly process interface properties and argument default values + Support resources, for example: {%R *.dfm}, {$R *.res} 2002-05-26 + Support default arguments + Support interface 2002-05-25 + Support object type + Support resourcestring + Support threadvar + Support function/procedure type 2002-05-24 + Support file type + Support set of enumerated type const decompiler + Support enumerated type const decompiler + Support subrange of enumerated type + Support dynamic array type - Array [enumerted type] of ... - Bugs in [packed] array fixed - Bugs in [packed] record fixed - Bugs in enumerated type fixed - Bugs in classify interface and implement declarations fixed

2012-11-08

dev express 5.3 delphi 最新

dev express 5.3 delphi 最新 全自动安装,包括常用的所有dev控件,内带demo

2012-11-08

delphi 控件开发 eidt,combobox下拉tree,自动级联

delphi 控件开发 eidt,combobox下拉tree,自动级联查询parent

2012-11-06

delphi 端口映射

delphi 断开映射 外网映射端口

2012-11-06

dbgrideh5.6 完全安装代码版本 delphi7

dbgrideh5.6 完全安装代码版本 delphi7,带范例

2012-10-23

delphixe2 ,c++ build 皮肤控件 winskin

皮肤控件 delphi 7,delphi6,delphi系列

2012-10-23

delphixe2 注册机

delphixe2 完全破解机

2012-10-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除