2013-05-16 11:54:09 +02:00
|
|
|
program LockWorkstation;
|
|
|
|
|
|
|
|
uses
|
|
|
|
Vcl.Forms,
|
|
|
|
uMainForm in 'uMainForm.pas' {MainForm},
|
|
|
|
uLibName in '..\..\..\include\uLibName.pas',
|
|
|
|
highgui_c in '..\..\..\include\highgui\highgui_c.pas',
|
|
|
|
core_c in '..\..\..\include\core\core_c.pas',
|
|
|
|
Core.types_c in '..\..\..\include\core\Core.types_c.pas',
|
|
|
|
imgproc.types_c in '..\..\..\include\imgproc\imgproc.types_c.pas',
|
|
|
|
imgproc_c in '..\..\..\include\imgproc\imgproc_c.pas',
|
|
|
|
imgproc in '..\..\..\include\imgproc\imgproc.pas',
|
|
|
|
haar in '..\..\..\include\objdetect\haar.pas',
|
|
|
|
objdetect in '..\..\..\include\objdetect\objdetect.pas',
|
|
|
|
core in '..\..\..\include\core\core.pas',
|
2013-05-21 01:35:54 +02:00
|
|
|
cvUtils in '..\..\..\include\cvUtils.pas',
|
|
|
|
Mat in '..\..\..\include\core\Mat.pas';
|
2013-05-16 11:54:09 +02:00
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
begin
|
|
|
|
Application.Initialize;
|
|
|
|
Application.MainFormOnTaskbar := True;
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
Application.Run;
|
|
|
|
end.
|