Delphi-OpenCV/samples/Components/cFMXCameracapture/cFMXCameraCapture.dpr
Laentir Valetov c306474e0c [+] ocv.fmxutils.pas
[*] rename ocv.cvutils.pas to ocv.utils.pas

Signed-off-by: Laentir Valetov <laex@bk.ru>
2015-08-26 20:35:51 +03:00

16 lines
281 B
ObjectPascal

program cFMXCameraCapture;
uses
System.StartUpCopy,
FMX.Forms,
uMainForm in 'uMainForm.pas' {MainForm},
ocv.fmxutils in '..\..\..\source\ocv.fmxutils.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.