2013-04-09 12:41:27 +02:00
|
|
|
(* / **************************************************************************************************
|
|
|
|
// 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
|
|
|
|
// **************************************************************************************************
|
|
|
|
// 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!
|
|
|
|
// ************************************************************************************************* *)
|
2013-04-02 00:17:25 +02:00
|
|
|
unit uLibName;
|
2013-03-27 23:20:08 +01:00
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
const
|
2013-04-12 21:33:12 +02:00
|
|
|
CV_Version = '245';
|
2013-03-27 23:20:08 +01:00
|
|
|
|
|
|
|
{$IFDEF DEBUG}
|
|
|
|
Core_Dll = 'opencv_core' + CV_Version + 'd.dll';
|
|
|
|
highgui_Dll = 'opencv_highgui' + CV_Version + 'd.dll';
|
|
|
|
imgproc_Dll = 'opencv_imgproc' + CV_Version + 'd.dll';
|
2013-03-31 22:30:13 +02:00
|
|
|
objdetect_dll = 'opencv_objdetect' + CV_Version + 'd.dll';
|
|
|
|
legacy_dll = 'opencv_legacy' + CV_Version + 'd.dll';
|
|
|
|
calib3d_dll = 'opencv_calib3d' + CV_Version + 'd.dll';
|
2013-04-05 13:36:47 +02:00
|
|
|
tracking_DLL = 'opencv_video' + CV_Version + 'd.dll';
|
2013-04-14 19:17:55 +02:00
|
|
|
Nonfree_DLL = 'opencv_nonfree' + CV_Version + 'd.dll';
|
2013-05-14 23:36:16 +02:00
|
|
|
OpenCV_Classes_DLL ='OpenCV_Classes.dll';
|
2013-03-27 23:20:08 +01:00
|
|
|
{$ELSE}
|
|
|
|
Core_Dll = 'opencv_core' + CV_Version + '.dll';
|
|
|
|
highgui_Dll = 'opencv_highgui' + CV_Version + '.dll';
|
|
|
|
imgproc_Dll = 'opencv_imgproc' + CV_Version + '.dll';
|
2013-03-31 22:30:13 +02:00
|
|
|
objdetect_dll = 'opencv_objdetect' + CV_Version + '.dll';
|
|
|
|
legacy_dll = 'opencv_legacy' + CV_Version + '.dll';
|
|
|
|
calib3d_dll = 'opencv_calib3d' + CV_Version + '.dll';
|
2013-04-05 13:36:47 +02:00
|
|
|
tracking_DLL = 'opencv_video' + CV_Version + '.dll';
|
2013-04-14 19:17:55 +02:00
|
|
|
Nonfree_DLL = 'opencv_nonfree' + CV_Version + '.dll';
|
2013-05-14 23:36:16 +02:00
|
|
|
OpenCV_Classes_DLL ='OpenCV_Classes.dll';
|
2013-03-27 23:20:08 +01:00
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|