Delphi-OpenCV/samples/Components/cMatchTemplate/cMatchTemplate.dpr
Laentir Valetov 0ab5ab619c MathTemplate image operation
Signed-off-by: Laentir Valetov <laex@bk.ru>
2014-05-15 04:09:58 +04:00

15 lines
243 B
ObjectPascal

program cMatchTemplate;
uses
Vcl.Forms,
uMainForm in 'uMainForm.pas' {MainForm};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
end.