delphi
文章平均质量分 57
无
大米粥哥哥
这货很懒
展开
-
delphi固定窗口大小
delphi 10.2 固定窗口大小 设置以下属性 BorderIIcons 只选择 biSystemMenu BorderStyle 选择 Single 属性:BorderIIcons: //--------------------BorderStyle :边框样式 优先级比上面的高None 无边框S原创 2017-10-16 22:28:47 · 3230 阅读 · 0 评论 -
学习delphi FMX 的一些资料
1. C:\Users\Public\Documents\Embarcadero\Studio\19.0\Samples自带的例子2. http://docwiki.embarcadero.com/ 官方的在线帮助文档3. 软件上方的help 官方的离线帮助文档4. 一些博客 http://www.cn原创 2017-10-26 16:15:06 · 2735 阅读 · 0 评论 -
delphi FMX使用模糊集合进行灰度变换
//模糊灰度变换procedure mohuhuidu(b : TBitmap);var x, y , I : Integer; //黑 灰 亮 三个输入隶属度函数 dark , gray, bright : array [0..255] of single; rwdata : TBitmapData ; p: PByteArray;begin //初始原创 2017-12-09 16:22:20 · 591 阅读 · 0 评论 -
delphi FMX图像的局部直方图均衡
//局部直方图均衡 jubu 3x3procedure jubu(b : TBitmap);var b_read : TBitmap; x, y , I: Integer; wdata , rdata : TBitmapData ; p0,p,p1,pw: PByteArray; n : array [0..255] of Integer;begin b_原创 2017-12-03 16:08:38 · 389 阅读 · 0 评论 -
delphi FMX图像的直方图统计增强
//直方图统计增强 3x3procedure tongji(b : TBitmap);var b_read : TBitmap; //增强的参数 c k0,k1,k2,e : single ; //均值 和 方差 c mg,ug,m3,u3 : single ; x, y , I: Integer; wdata , rdata : TBitm原创 2017-12-03 11:46:13 · 498 阅读 · 0 评论 -
delphi FMX图像的直方图匹配
//直方图匹配 pipeiprocedure pipei(b : TBitmap; var g : array of Integer);var x, y , I ,J: Integer; A_BMPData : TBitmapData ; p: PByteArray; n : array [0..255] of Integer;begin //初始化数组 c原创 2017-12-04 15:04:32 · 480 阅读 · 0 评论 -
delphi FMX图像的直方图均衡
//直方图均衡 junhengprocedure junheng(b : TBitmap);var x, y , I: Integer; A_BMPData : TBitmapData ; p: PByteArray; n : array [0..255] of Integer;begin //初始化数组 c for I := 0 to 255 do原创 2017-11-26 13:27:31 · 849 阅读 · 0 评论 -
delphi FMX使用模糊集合进行边缘提取
//模糊集合的边缘提取procedure mohulvbo(b : TBitmap);var b_read : TBitmap; x, y , I : Integer; //0 黑 白 三个输入隶属度函数 ze , bl, wh : array [0..255] of single; wdata , rdata: TBitmapData ; p0,p,p1原创 2017-12-14 16:03:08 · 642 阅读 · 0 评论 -
delphi 删除文件
del('C:\Users\Administrator\Desktop\delphi\wenjian\Win32\Debug\','*.txt');//删除文件 目录 //文件名 可以有通配符 procedure del(mulu : string ; f : string);var SearchRec : TSearchRec;begin原创 2017-11-14 14:26:37 · 4289 阅读 · 0 评论 -
delphi FMX图像的二值化
procedure TForm2.TrackBar1Change(Sender: TObject);var Gray, x, y : Integer; A_BMPData : TBitmapData ; p: PByteArray; b : TBitmap;begin //创建一个临时变量存储二值化后的图像 b := TBitmap.Create; b原创 2017-10-26 15:19:30 · 1521 阅读 · 0 评论 -
delphi FMX gridlayout与gridpannellayout
Gridlayout: 如果将ItemWidth设置为-1,则单元格的宽度自动按TGridLayout的宽度进行等分计算. 使用TGridLayout布局控件,其子控件的Position,Align,Anchors属性都自动设置,忽略你对这些属性值的修改。 //---------------------------------------------------原创 2017-11-02 14:08:05 · 2877 阅读 · 0 评论 -
delphi FMX图像的灰度化和反色
//灰度化 hprocedure Thuidu(b : TBitmap);var Gray, x, y : Integer; data : TBitmapData ; p: PByteArray;begin if b.Map( TMapAccess.ReadWrite, data) then begin for y := 0 to data.原创 2017-10-28 09:08:22 · 1287 阅读 · 0 评论 -
delphi FMX图像简单的边缘检测(sobel、prewitt、robert)
//sobel 算子 3x3// -1 0 1 1 2 1// -2 0 2 0 0 0// -1 0 1 -1 -2 -1procedure sobel(b : TBitmap);var b_read : TBitmap; x, y : Integer; wdata , rdata原创 2017-10-29 22:40:41 · 1179 阅读 · 0 评论 -
delphi FMX图像简单滤波(中值、均值、高斯)
//排序 paixuprocedure paixu(var temp : array of Byte);var i,j : Integer; t : Byte;begin for i := low(temp) to high(temp)-1 do for j := i to high(temp)-1 do if temp[i]<temp[j] then原创 2017-10-28 21:45:48 · 1261 阅读 · 0 评论 -
delphi FMX图像简单的腐蚀和膨胀
//排序 paixuprocedure paixu(var temp : array of Byte);var i,j : Integer; t : Byte;begin for i := low(temp) to high(temp) do for j := i to high(temp) do if temp[i]<temp[j] then原创 2017-10-30 17:39:29 · 1087 阅读 · 0 评论 -
delphi vcl图像的二值化
unit Unit2;interfaceuses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtCtrls, Vcl.原创 2017-10-23 15:12:18 · 1251 阅读 · 0 评论 -
delphi简单的聊天室(两个人)
点对点的TCP通信 只能俩个人unit kehu;interfaceuses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, IdBase原创 2017-10-14 17:46:19 · 1536 阅读 · 0 评论 -
delphi简单的聊天室(UDP广播)
点对点的TCP通信 只能俩个人 用了UDP广播发送服务器的IP和端口号 然后客户端获取其IP和端口unit kehu;interfaceuses System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants, FMX.Types, FMX.Controls, FMX.Forms, F原创 2017-10-15 21:24:31 · 2896 阅读 · 0 评论 -
delphi FMX控件的常见属性
None 无 尺寸位置可调,但不随着窗体尺寸变化。组件被保持在它的父类放置的位置,即窗体或面板,它是属性的缺省值。 Top 顶 组件被移动到窗体的顶端,并且被重新决定大小以充满窗体的宽,组件的高度不会受到影响。 Left 左 剩余空间的左部分填满,强调剩余部分。组件被移动到窗体的左边,并且被重新设定大小以充原创 2017-11-01 22:07:14 · 3007 阅读 · 0 评论 -
delphi FMX用TImage显示不同格式的图片
//一个按钮的点击函数procedure TForm3.Button1Click(Sender: TObject);var s , ss: string;begin //选择一个图片 open: TOpenDialog; if open.Execute then begin //获取完整路径 s := open.FileName;原创 2017-12-06 21:10:06 · 3387 阅读 · 0 评论