⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagepreprocess.dpr

📁 数字图像预出处理系统
💻 DPR
字号:
//Desiger: Jiang Xiangang    2005.8
program ImagePreProcess;

uses
  Forms,
  ImageProcessMainUnit in 'ImageProcessMainUnit.pas' {ImageProcessForm},
  ImageFileSelect in 'ImageFileSelect.pas' {ImageSelectForm},
  about in 'about.pas' {AboutBox},
  GaborShow in 'GaborShow.pas' {GaborShowForm},
  ParameterSet in 'ParameterSet.pas' {ParameterForm};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TImageProcessForm, ImageProcessForm);
  Application.CreateForm(TImageSelectForm, ImageSelectForm);
  Application.CreateForm(TAboutBox, AboutBox);
  Application.CreateForm(TGaborShowForm, GaborShowForm);
  Application.CreateForm(TParameterForm, ParameterForm);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -