2010-07-14 17:55:16 +02:00
|
|
|
/*M///////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
|
|
|
|
//
|
|
|
|
// By downloading, copying, installing or using the software you agree to this license.
|
|
|
|
// If you do not agree to this license, do not download, install,
|
|
|
|
// copy or use the software.
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// License Agreement
|
|
|
|
// For Open Source Computer Vision Library
|
|
|
|
//
|
|
|
|
// Copyright (C) 2000-2008, Intel Corporation, all rights reserved.
|
|
|
|
// Copyright (C) 2009, Willow Garage Inc., all rights reserved.
|
|
|
|
// Third party copyrights are property of their respective owners.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
// are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistribution's of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// * Redistribution's in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
//
|
|
|
|
// * The name of the copyright holders may not be used to endorse or promote products
|
|
|
|
// derived from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// This software is provided by the copyright holders and contributors "as is" and
|
|
|
|
// any express or implied warranties, including, but not limited to, the implied
|
|
|
|
// warranties of merchantability and fitness for a particular purpose are disclaimed.
|
|
|
|
// In no event shall the Intel Corporation or contributors be liable for any direct,
|
|
|
|
// indirect, incidental, special, exemplary, or consequential damages
|
|
|
|
// (including, but not limited to, procurement of substitute goods or services;
|
|
|
|
// loss of use, data, or profits; or business interruption) however caused
|
|
|
|
// and on any theory of liability, whether in contract, strict liability,
|
|
|
|
// or tort (including negligence or otherwise) arising in any way out of
|
|
|
|
// the use of this software, even if advised of the possibility of such damage.
|
|
|
|
//
|
|
|
|
//M*/
|
2011-10-19 11:53:22 +02:00
|
|
|
|
2010-07-14 17:55:16 +02:00
|
|
|
#ifndef __OPENCV_PRECOMP_H__
|
|
|
|
#define __OPENCV_PRECOMP_H__
|
|
|
|
|
2012-06-07 19:21:29 +02:00
|
|
|
#if defined _MSC_VER && _MSC_VER >= 1200
|
2011-10-19 11:53:22 +02:00
|
|
|
#pragma warning( disable: 4251 4710 4711 4514 4996 )
|
2010-07-14 17:55:16 +02:00
|
|
|
#endif
|
|
|
|
|
2011-09-10 14:30:28 +02:00
|
|
|
#ifdef HAVE_CVCONFIG_H
|
2011-10-19 11:53:22 +02:00
|
|
|
#include "cvconfig.h"
|
2011-09-10 14:30:28 +02:00
|
|
|
#endif
|
2010-07-14 17:55:16 +02:00
|
|
|
|
2012-04-18 13:18:25 +02:00
|
|
|
#include <cstring>
|
2010-07-15 11:18:39 +02:00
|
|
|
#include <iostream>
|
2010-07-22 11:31:33 +02:00
|
|
|
#include <limits>
|
2010-08-16 16:47:17 +02:00
|
|
|
#include <vector>
|
2010-09-17 17:28:59 +02:00
|
|
|
#include <algorithm>
|
2010-09-24 18:41:34 +02:00
|
|
|
#include <sstream>
|
2010-11-15 17:22:52 +01:00
|
|
|
#include <exception>
|
2010-12-28 15:57:23 +01:00
|
|
|
#include <iterator>
|
2011-01-21 08:43:11 +01:00
|
|
|
#include <functional>
|
2011-03-14 10:40:13 +01:00
|
|
|
#include <utility>
|
2012-04-18 13:18:25 +02:00
|
|
|
#include <deque>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2010-07-15 11:18:39 +02:00
|
|
|
|
2010-07-14 17:55:16 +02:00
|
|
|
#include "opencv2/gpu/gpu.hpp"
|
2010-09-13 16:30:09 +02:00
|
|
|
#include "opencv2/imgproc/imgproc.hpp"
|
2012-06-05 15:32:04 +02:00
|
|
|
#include "opencv2/imgproc/imgproc_c.h"
|
2011-02-21 11:58:05 +01:00
|
|
|
#include "opencv2/calib3d/calib3d.hpp"
|
2011-02-28 15:21:41 +01:00
|
|
|
#include "opencv2/core/internal.hpp"
|
2012-02-16 12:23:51 +01:00
|
|
|
#include "opencv2/video/video.hpp"
|
2010-07-15 15:36:00 +02:00
|
|
|
|
2011-10-19 11:53:22 +02:00
|
|
|
#define OPENCV_GPU_UNUSED(x) (void)x
|
|
|
|
|
|
|
|
#ifdef HAVE_CUDA
|
2010-07-15 15:36:00 +02:00
|
|
|
|
2012-04-17 09:12:16 +02:00
|
|
|
#include <cuda.h>
|
|
|
|
#include <cuda_runtime.h>
|
|
|
|
#include <npp.h>
|
2012-03-26 16:33:43 +02:00
|
|
|
|
2011-10-19 11:53:22 +02:00
|
|
|
#ifdef HAVE_CUFFT
|
2012-04-17 09:12:16 +02:00
|
|
|
#include <cufft.h>
|
2011-10-19 11:53:22 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_CUBLAS
|
2012-04-17 09:12:16 +02:00
|
|
|
#include <cublas.h>
|
|
|
|
#endif
|
|
|
|
|
2012-05-11 13:48:15 +02:00
|
|
|
#ifndef __APPLE__
|
|
|
|
#include <nvcuvid.h>
|
|
|
|
#endif
|
2012-04-17 09:12:16 +02:00
|
|
|
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <NVEncoderAPI.h>
|
2011-10-19 11:53:22 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "internal_shared.hpp"
|
2010-07-28 16:46:44 +02:00
|
|
|
#include "opencv2/gpu/stream_accessor.hpp"
|
2012-03-26 16:33:43 +02:00
|
|
|
|
2011-02-04 19:29:05 +01:00
|
|
|
#include "nvidia/core/NCV.hpp"
|
|
|
|
#include "nvidia/NPP_staging/NPP_staging.hpp"
|
|
|
|
#include "nvidia/NCVHaarObjectDetection.hpp"
|
2011-10-17 15:12:39 +02:00
|
|
|
#include "nvidia/NCVBroxOpticalFlow.hpp"
|
2011-01-13 14:04:00 +01:00
|
|
|
|
2012-02-22 11:00:53 +01:00
|
|
|
#define CUDART_MINIMUM_REQUIRED_VERSION 4010
|
|
|
|
#define NPP_MINIMUM_REQUIRED_VERSION 4100
|
2010-11-25 09:42:12 +01:00
|
|
|
|
2011-10-19 11:53:22 +02:00
|
|
|
#if (CUDART_VERSION < CUDART_MINIMUM_REQUIRED_VERSION)
|
|
|
|
#error "Insufficient Cuda Runtime library version, please update it."
|
|
|
|
#endif
|
2010-11-25 11:42:09 +01:00
|
|
|
|
2011-10-19 11:53:22 +02:00
|
|
|
#if (NPP_VERSION_MAJOR * 1000 + NPP_VERSION_MINOR * 100 + NPP_VERSION_BUILD < NPP_MINIMUM_REQUIRED_VERSION)
|
|
|
|
#error "Insufficient NPP version, please update it."
|
|
|
|
#endif
|
2010-11-25 09:42:12 +01:00
|
|
|
|
2011-10-19 11:53:22 +02:00
|
|
|
#if defined(CUDA_ARCH_BIN_OR_PTX_10)
|
|
|
|
#error "OpenCV GPU module doesn't support NVIDIA compute capability 1.0"
|
|
|
|
#endif
|
2011-01-20 15:13:07 +01:00
|
|
|
|
2012-03-26 16:33:43 +02:00
|
|
|
static inline void throw_nogpu() { CV_Error(CV_StsNotImplemented, "The called functionality is disabled for current build or platform"); }
|
2010-11-25 11:42:09 +01:00
|
|
|
|
2010-07-19 11:31:12 +02:00
|
|
|
#else /* defined(HAVE_CUDA) */
|
2010-07-14 17:55:16 +02:00
|
|
|
|
2010-12-06 09:03:33 +01:00
|
|
|
static inline void throw_nogpu() { CV_Error(CV_GpuNotSupported, "The library is compiled without GPU support"); }
|
2010-07-27 10:29:40 +02:00
|
|
|
|
2010-07-19 11:31:12 +02:00
|
|
|
#endif /* defined(HAVE_CUDA) */
|
2010-07-15 16:42:24 +02:00
|
|
|
|
2010-07-27 10:29:40 +02:00
|
|
|
#endif /* __OPENCV_PRECOMP_H__ */
|