mirror of
https://github.com/Laex/Delphi-OpenCV.git
synced 2024-11-16 16:25:53 +01:00
70 lines
2.0 KiB
ObjectPascal
70 lines
2.0 KiB
ObjectPascal
// *****************************************************************
|
|
// Delphi-OpenCV Demo
|
|
// Copyright (C) 2013 Project Delphi-OpenCV
|
|
// ****************************************************************
|
|
// Contributor:
|
|
// Laentir Valetov
|
|
// email:laex@bk.ru
|
|
// ****************************************************************
|
|
// You may retrieve the latest version of this file at the GitHub,
|
|
// located at git://github.com/Laex/Delphi-OpenCV.git
|
|
// ****************************************************************
|
|
// The contents of this file are used with permission, subject to
|
|
// the Mozilla Public License Version 1.1 (the "License"); you may
|
|
// not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at
|
|
// http://www.mozilla.org/MPL/MPL-1_1Final.html
|
|
//
|
|
// Software distributed under the License is distributed on an
|
|
// "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
// implied. See the License for the specific language governing
|
|
// rights and limitations under the License.
|
|
// *******************************************************************
|
|
|
|
package OpenCV;
|
|
|
|
{$R *.res}
|
|
{$R *.otares}
|
|
{$R *.dcr}
|
|
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
|
|
{$ALIGN 8}
|
|
{$ASSERTIONS ON}
|
|
{$BOOLEVAL OFF}
|
|
{$DEBUGINFO OFF}
|
|
{$EXTENDEDSYNTAX ON}
|
|
{$IMPORTEDDATA ON}
|
|
{$IOCHECKS ON}
|
|
{$LOCALSYMBOLS ON}
|
|
{$LONGSTRINGS ON}
|
|
{$OPENSTRINGS ON}
|
|
{$OPTIMIZATION OFF}
|
|
{$OVERFLOWCHECKS OFF}
|
|
{$RANGECHECKS OFF}
|
|
{$REFERENCEINFO ON}
|
|
{$SAFEDIVIDE OFF}
|
|
{$STACKFRAMES ON}
|
|
{$TYPEDADDRESS OFF}
|
|
{$VARSTRINGCHECKS ON}
|
|
{$WRITEABLECONST OFF}
|
|
{$MINENUMSIZE 1}
|
|
{$IMAGEBASE $400000}
|
|
{$DEFINE DEBUG}
|
|
{$ENDIF IMPLICITBUILDING}
|
|
{$DESCRIPTION 'OpenCV Component'}
|
|
{$IMPLICITBUILD ON}
|
|
|
|
requires
|
|
rtl,
|
|
vcl,
|
|
DesignIDE;
|
|
|
|
contains
|
|
uOCVTypes in 'uOCVTypes.pas',
|
|
uOCVSource in 'uOCVSource.pas',
|
|
uOCVView in 'uOCVView.pas',
|
|
uOCVImageOperation in 'uOCVImageOperation.pas',
|
|
uOCVRegister in 'uOCVRegister.pas',
|
|
uOCVIOProperties in 'uOCVIOProperties.pas';
|
|
|
|
end.
|