mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-15 15:55:53 +01:00
3ae4ef8956
[*] Rename files of: - Calib3d.pas in calib3d_s.pas - Tracking.pas in tracking_s.pas To ensure conformity with the file names OpenCV library [!] Modules used in the project without the inclusion of relative paths. Added instructions on how to add the module search path (see readme_en.txt) [+] Added an example Posit (cvReleasePOSITObject, cvPOSIT and others) (thanks to Frans van Daalen (CLubfitter73)) Signed-off-by: Laex <laex@bk.ru>
15 lines
244 B
ObjectPascal
15 lines
244 B
ObjectPascal
program LockWorkstation;
|
|
|
|
uses
|
|
Vcl.Forms,
|
|
uMainForm in 'uMainForm.pas' {MainForm};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.MainFormOnTaskbar := True;
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
Application.Run;
|
|
end.
|