Delphi-OpenCV/samples/MultiDemo/VCLChessboardCorners/VCLChessboardCorners.dpr
Laex d1fab15b0f Components!?
[+] Added demos of creating and using visual and non-visual component using OpenCV (\ component \ OpenCV.dpk)
[+] Added an example of using components
(samples \ Components \ cCameraCapture \ cCameraCapture.dpr)
[*] Minor changes in the modules

Signed-off-by: Laex <laex@bk.ru>
2013-05-30 05:12:44 +04:00

18 lines
357 B
ObjectPascal

// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
program VCLChessboardCorners;
uses
Vcl.Forms,
MainForm in 'MainForm.pas' {FormMain};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TFormMain, FormMain);
Application.Run;
end.