mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-16 16:25:53 +01:00
26 lines
832 B
ObjectPascal
26 lines
832 B
ObjectPascal
|
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',
|
||
|
cvUtils in '..\..\..\include\cvUtils.pas';
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
begin
|
||
|
Application.Initialize;
|
||
|
Application.MainFormOnTaskbar := True;
|
||
|
Application.CreateForm(TMainForm, MainForm);
|
||
|
Application.Run;
|
||
|
end.
|