2014-11-15 12:34:10 +01:00
|
|
|
(*
|
|
|
|
**************************************************************************************************
|
|
|
|
Project Delphi-OpenCV
|
|
|
|
**************************************************************************************************
|
|
|
|
Contributor:
|
|
|
|
Laentir Valetov
|
|
|
|
email:laex@bk.ru
|
|
|
|
Mikhail Grigorev
|
2018-08-16 20:29:02 +02:00
|
|
|
email:sleuthhound@gmail.com
|
2014-11-15 12:34:10 +01:00
|
|
|
**************************************************************************************************
|
|
|
|
You may retrieve the latest version of this file at the GitHub,
|
|
|
|
located at git://github.com/Laex/Delphi-OpenCV.git
|
|
|
|
**************************************************************************************************
|
|
|
|
License:
|
|
|
|
The contents of this file are 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/
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
Alternatively, the contents of this file may be used under the terms of the
|
|
|
|
GNU Lesser General Public License (the "LGPL License"), in which case the
|
|
|
|
provisions of the LGPL License are applicable instead of those above.
|
|
|
|
If you wish to allow use of your version of this file only under the terms
|
|
|
|
of the LGPL License and not to allow others to use your version of this file
|
|
|
|
under the MPL, indicate your decision by deleting the provisions above and
|
|
|
|
replace them with the notice and other provisions required by the LGPL
|
|
|
|
License. If you do not delete the provisions above, a recipient may use
|
|
|
|
your version of this file under either the MPL or the LGPL License.
|
|
|
|
|
|
|
|
For more information about the LGPL: http://www.gnu.org/copyleft/lesser.html
|
|
|
|
**************************************************************************************************
|
|
|
|
Warning: Using Delphi XE3 syntax!
|
|
|
|
**************************************************************************************************
|
|
|
|
The Initial Developer of the Original Code:
|
|
|
|
OpenCV: open source computer vision library
|
|
|
|
Homepage: http://ocv.org
|
|
|
|
Online docs: http://docs.ocv.org
|
|
|
|
Q&A forum: http://answers.ocv.org
|
|
|
|
Dev zone: http://code.ocv.org
|
|
|
|
**************************************************************************************************
|
|
|
|
Original file:
|
|
|
|
opencv\modules\nonfree\include\opencv2\nonfree.hpp
|
|
|
|
*************************************************************************************************
|
|
|
|
*)
|
2013-04-14 19:17:55 +02:00
|
|
|
|
2015-10-05 18:46:36 +02:00
|
|
|
{$I OpenCV.inc}
|
2014-05-22 16:23:41 +02:00
|
|
|
unit ocv.nonfree;
|
2013-04-14 19:17:55 +02:00
|
|
|
|
|
|
|
interface
|
|
|
|
|
2015-10-05 18:46:36 +02:00
|
|
|
{$IFNDEF DelphiOCVVersion_30}
|
2015-11-12 16:46:36 +01:00
|
|
|
function initModule_nonfree(): ByteBool; cdecl;
|
2015-10-05 18:46:36 +02:00
|
|
|
{$ENDIF}
|
2013-04-14 19:17:55 +02:00
|
|
|
|
|
|
|
implementation
|
|
|
|
|
2014-05-22 16:23:41 +02:00
|
|
|
uses ocv.lib;
|
2013-04-14 19:17:55 +02:00
|
|
|
|
2015-10-05 18:46:36 +02:00
|
|
|
{$IFNDEF DelphiOCVVersion_30}
|
2017-09-10 01:16:52 +02:00
|
|
|
//function initModule_nonfree; external nonfree_lib index 895;
|
|
|
|
function initModule_nonfree; external nonfree_lib name '?initModule_nonfree@cv@@YA_NXZ';
|
2013-04-14 19:17:55 +02:00
|
|
|
|
2015-01-23 13:50:01 +01:00
|
|
|
initialization
|
|
|
|
|
|
|
|
initModule_nonfree;
|
2015-10-05 18:46:36 +02:00
|
|
|
{$ENDIF}
|
2015-01-23 13:50:01 +01:00
|
|
|
|
2013-04-14 19:17:55 +02:00
|
|
|
end.
|