mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-16 08:15:52 +01:00
abd705a0ca
Signed-off-by: Michael Grigorev <sleuthhound@gmail.com>
28 lines
930 B
ObjectPascal
28 lines
930 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',
|
|
Mat in '..\..\..\include\core\Mat.pas',
|
|
core.types in '..\..\..\include\core\core.types.pas',
|
|
cvUtils in '..\..\..\include\cvUtils.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|