opencv on mbed

Dependencies:   mbed

Committer:
joeverbout
Date:
Thu Mar 31 21:16:38 2016 +0000
Revision:
0:ea44dc9ed014
OpenCV on mbed attempt

Who changed what in which revision?

UserRevisionLine numberNew contents of line
joeverbout 0:ea44dc9ed014 1 /*M///////////////////////////////////////////////////////////////////////////////////////
joeverbout 0:ea44dc9ed014 2 //
joeverbout 0:ea44dc9ed014 3 // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
joeverbout 0:ea44dc9ed014 4 //
joeverbout 0:ea44dc9ed014 5 // By downloading, copying, installing or using the software you agree to this license.
joeverbout 0:ea44dc9ed014 6 // If you do not agree to this license, do not download, install,
joeverbout 0:ea44dc9ed014 7 // copy or use the software.
joeverbout 0:ea44dc9ed014 8 //
joeverbout 0:ea44dc9ed014 9 //
joeverbout 0:ea44dc9ed014 10 // Intel License Agreement
joeverbout 0:ea44dc9ed014 11 // For Open Source Computer Vision Library
joeverbout 0:ea44dc9ed014 12 //
joeverbout 0:ea44dc9ed014 13 // Copyright( C) 2000-2015, Intel Corporation, all rights reserved.
joeverbout 0:ea44dc9ed014 14 // Copyright (C) 2011-2013, NVIDIA Corporation, all rights reserved.
joeverbout 0:ea44dc9ed014 15 // Copyright (C) 2013, OpenCV Foundation, all rights reserved.
joeverbout 0:ea44dc9ed014 16 // Copyright (C) 2015, Itseez Inc., all rights reserved.
joeverbout 0:ea44dc9ed014 17 // Third party copyrights are property of their respective owners.
joeverbout 0:ea44dc9ed014 18 //
joeverbout 0:ea44dc9ed014 19 // Redistribution and use in source and binary forms, with or without modification,
joeverbout 0:ea44dc9ed014 20 // are permitted provided that the following conditions are met:
joeverbout 0:ea44dc9ed014 21 //
joeverbout 0:ea44dc9ed014 22 // * Redistribution's of source code must retain the above copyright notice,
joeverbout 0:ea44dc9ed014 23 // this list of conditions and the following disclaimer.
joeverbout 0:ea44dc9ed014 24 //
joeverbout 0:ea44dc9ed014 25 // * Redistribution's in binary form must reproduce the above copyright notice,
joeverbout 0:ea44dc9ed014 26 // this list of conditions and the following disclaimer in the documentation
joeverbout 0:ea44dc9ed014 27 // and/or other materials provided with the distribution.
joeverbout 0:ea44dc9ed014 28 //
joeverbout 0:ea44dc9ed014 29 // * The name of Intel Corporation may not be used to endorse or promote products
joeverbout 0:ea44dc9ed014 30 // derived from this software without specific prior written permission.
joeverbout 0:ea44dc9ed014 31 //
joeverbout 0:ea44dc9ed014 32 // This software is provided by the copyright holders and contributors "as is" and
joeverbout 0:ea44dc9ed014 33 // any express or implied warranties, including, but not limited to, the implied
joeverbout 0:ea44dc9ed014 34 // warranties of merchantability and fitness for a particular purpose are disclaimed.
joeverbout 0:ea44dc9ed014 35 // In no event shall the Intel Corporation or contributors be liable for any direct,
joeverbout 0:ea44dc9ed014 36 // indirect, incidental, special, exemplary, or consequential damages
joeverbout 0:ea44dc9ed014 37 //(including, but not limited to, procurement of substitute goods or services;
joeverbout 0:ea44dc9ed014 38 // loss of use, data, or profits; or business interruption) however caused
joeverbout 0:ea44dc9ed014 39 // and on any theory of liability, whether in contract, strict liability,
joeverbout 0:ea44dc9ed014 40 // or tort(including negligence or otherwise) arising in any way out of
joeverbout 0:ea44dc9ed014 41 // the use of this software, even if advised of the possibility of such damage.
joeverbout 0:ea44dc9ed014 42 //
joeverbout 0:ea44dc9ed014 43 //M*/
joeverbout 0:ea44dc9ed014 44
joeverbout 0:ea44dc9ed014 45 /*
joeverbout 0:ea44dc9ed014 46 definition of the current version of OpenCV
joeverbout 0:ea44dc9ed014 47 Usefull to test in user programs
joeverbout 0:ea44dc9ed014 48 */
joeverbout 0:ea44dc9ed014 49
joeverbout 0:ea44dc9ed014 50 #ifndef __OPENCV_VERSION_HPP__
joeverbout 0:ea44dc9ed014 51 #define __OPENCV_VERSION_HPP__
joeverbout 0:ea44dc9ed014 52
joeverbout 0:ea44dc9ed014 53 #define CV_VERSION_MAJOR 3
joeverbout 0:ea44dc9ed014 54 #define CV_VERSION_MINOR 1
joeverbout 0:ea44dc9ed014 55 #define CV_VERSION_REVISION 0
joeverbout 0:ea44dc9ed014 56 #define CV_VERSION_STATUS ""
joeverbout 0:ea44dc9ed014 57
joeverbout 0:ea44dc9ed014 58 #define CVAUX_STR_EXP(__A) #__A
joeverbout 0:ea44dc9ed014 59 #define CVAUX_STR(__A) CVAUX_STR_EXP(__A)
joeverbout 0:ea44dc9ed014 60
joeverbout 0:ea44dc9ed014 61 #define CVAUX_STRW_EXP(__A) L#__A
joeverbout 0:ea44dc9ed014 62 #define CVAUX_STRW(__A) CVAUX_STRW_EXP(__A)
joeverbout 0:ea44dc9ed014 63
joeverbout 0:ea44dc9ed014 64 #define CV_VERSION CVAUX_STR(CV_VERSION_MAJOR) "." CVAUX_STR(CV_VERSION_MINOR) "." CVAUX_STR(CV_VERSION_REVISION) CV_VERSION_STATUS
joeverbout 0:ea44dc9ed014 65
joeverbout 0:ea44dc9ed014 66 /* old style version constants*/
joeverbout 0:ea44dc9ed014 67 #define CV_MAJOR_VERSION CV_VERSION_MAJOR
joeverbout 0:ea44dc9ed014 68 #define CV_MINOR_VERSION CV_VERSION_MINOR
joeverbout 0:ea44dc9ed014 69 #define CV_SUBMINOR_VERSION CV_VERSION_REVISION
joeverbout 0:ea44dc9ed014 70
joeverbout 0:ea44dc9ed014 71 #endif
joeverbout 0:ea44dc9ed014 72