📄 imagepreprocess.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 + -