Delphi-OpenCV/samples/MultiDemo/FaceDetectAndLockWorkstation/LockWorkstation.dpr
Michael Grigorev 33337ea3db Add sample:
[*] samples/MultiDemo/FaceDetectAndLockWorkstation/LockWorkstation.dpr

Signed-off-by: Michael Grigorev <sleuthhound@gmail.com>
2013-05-16 15:54:09 +06:00

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.