Renesas / opencv-lib

Dependents:   RZ_A2M_Mbed_samples

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers opencv.hpp Source File

opencv.hpp

00001 /*M///////////////////////////////////////////////////////////////////////////////////////
00002 //
00003 //  IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
00004 //
00005 //  By downloading, copying, installing or using the software you agree to this license.
00006 //  If you do not agree to this license, do not download, install,
00007 //  copy or use the software.
00008 //
00009 //
00010 //                           License Agreement
00011 //                For Open Source Computer Vision Library
00012 //
00013 // Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
00014 // Copyright (C) 2009-2010, Willow Garage Inc., all rights reserved.
00015 // Third party copyrights are property of their respective owners.
00016 //
00017 // Redistribution and use in source and binary forms, with or without modification,
00018 // are permitted provided that the following conditions are met:
00019 //
00020 //   * Redistribution's of source code must retain the above copyright notice,
00021 //     this list of conditions and the following disclaimer.
00022 //
00023 //   * Redistribution's in binary form must reproduce the above copyright notice,
00024 //     this list of conditions and the following disclaimer in the documentation
00025 //     and/or other materials provided with the distribution.
00026 //
00027 //   * The name of the copyright holders may not be used to endorse or promote products
00028 //     derived from this software without specific prior written permission.
00029 //
00030 // This software is provided by the copyright holders and contributors "as is" and
00031 // any express or implied warranties, including, but not limited to, the implied
00032 // warranties of merchantability and fitness for a particular purpose are disclaimed.
00033 // In no event shall the Intel Corporation or contributors be liable for any direct,
00034 // indirect, incidental, special, exemplary, or consequential damages
00035 // (including, but not limited to, procurement of substitute goods or services;
00036 // loss of use, data, or profits; or business interruption) however caused
00037 // and on any theory of liability, whether in contract, strict liability,
00038 // or tort (including negligence or otherwise) arising in any way out of
00039 // the use of this software, even if advised of the possibility of such damage.
00040 //
00041 //M*/
00042 
00043 #ifndef OPENCV_ALL_HPP
00044 #define OPENCV_ALL_HPP
00045 
00046 // File that defines what modules where included during the build of OpenCV
00047 // These are purely the defines of the correct HAVE_OPENCV_modulename values
00048 #include "opencv2/opencv_modules.hpp"
00049 
00050 // Then the list of defines is checked to include the correct headers
00051 // Core library is always included --> without no OpenCV functionality available
00052 #include "opencv2/core.hpp"
00053 
00054 // Then the optional modules are checked
00055 #ifdef HAVE_OPENCV_CALIB3D
00056 #include "opencv2/calib3d.hpp"
00057 #endif
00058 #ifdef HAVE_OPENCV_FEATURES2D
00059 #include "opencv2/features2d.hpp"
00060 #endif
00061 #ifdef HAVE_OPENCV_FLANN
00062 #include "opencv2/flann.hpp"
00063 #endif
00064 #ifdef HAVE_OPENCV_HIGHGUI
00065 #include "opencv2/highgui.hpp"
00066 #endif
00067 #ifdef HAVE_OPENCV_IMGCODECS
00068 #include "opencv2/imgcodecs.hpp"
00069 #endif
00070 #ifdef HAVE_OPENCV_IMGPROC
00071 #include "opencv2/imgproc.hpp"
00072 #endif
00073 #ifdef HAVE_OPENCV_ML
00074 #include "opencv2/ml.hpp"
00075 #endif
00076 #ifdef HAVE_OPENCV_OBJDETECT
00077 #include "opencv2/objdetect.hpp"
00078 #endif
00079 #ifdef HAVE_OPENCV_PHOTO
00080 #include "opencv2/photo.hpp"
00081 #endif
00082 #ifdef HAVE_OPENCV_SHAPE
00083 #include "opencv2/shape.hpp"
00084 #endif
00085 #ifdef HAVE_OPENCV_STITCHING
00086 #include "opencv2/stitching.hpp"
00087 #endif
00088 #ifdef HAVE_OPENCV_SUPERRES
00089 #include "opencv2/superres.hpp"
00090 #endif
00091 #ifdef HAVE_OPENCV_VIDEO
00092 #include "opencv2/video.hpp"
00093 #endif
00094 #ifdef HAVE_OPENCV_VIDEOIO
00095 #include "opencv2/videoio.hpp"
00096 #endif
00097 #ifdef HAVE_OPENCV_VIDEOSTAB
00098 #include "opencv2/videostab.hpp"
00099 #endif
00100 #ifdef HAVE_OPENCV_VIZ
00101 #include "opencv2/viz.hpp"
00102 #endif
00103 
00104 // Finally CUDA specific entries are checked and added
00105 #ifdef HAVE_OPENCV_CUDAARITHM
00106 #include "opencv2/cudaarithm.hpp"
00107 #endif
00108 #ifdef HAVE_OPENCV_CUDABGSEGM
00109 #include "opencv2/cudabgsegm.hpp"
00110 #endif
00111 #ifdef HAVE_OPENCV_CUDACODEC
00112 #include "opencv2/cudacodec.hpp"
00113 #endif
00114 #ifdef HAVE_OPENCV_CUDAFEATURES2D
00115 #include "opencv2/cudafeatures2d.hpp"
00116 #endif
00117 #ifdef HAVE_OPENCV_CUDAFILTERS
00118 #include "opencv2/cudafilters.hpp"
00119 #endif
00120 #ifdef HAVE_OPENCV_CUDAIMGPROC
00121 #include "opencv2/cudaimgproc.hpp"
00122 #endif
00123 #ifdef HAVE_OPENCV_CUDAOBJDETECT
00124 #include "opencv2/cudaobjdetect.hpp"
00125 #endif
00126 #ifdef HAVE_OPENCV_CUDAOPTFLOW
00127 #include "opencv2/cudaoptflow.hpp"
00128 #endif
00129 #ifdef HAVE_OPENCV_CUDASTEREO
00130 #include "opencv2/cudastereo.hpp"
00131 #endif
00132 #ifdef HAVE_OPENCV_CUDAWARPING
00133 #include "opencv2/cudawarping.hpp"
00134 #endif
00135 
00136 #endif