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*/
|
|
|
|
|
|
|
|
#ifndef __OPENCV_CUDA_SHARED_HPP__
|
|
|
|
#define __OPENCV_CUDA_SHARED_HPP__
|
|
|
|
|
|
|
|
#include "opencv2/gpu/devmem2d.hpp"
|
2010-07-26 17:04:56 +02:00
|
|
|
#include "safe_call.hpp"
|
2010-07-19 12:49:35 +02:00
|
|
|
#include "cuda_runtime_api.h"
|
2010-07-14 17:55:16 +02:00
|
|
|
|
|
|
|
namespace cv
|
|
|
|
{
|
|
|
|
namespace gpu
|
2010-07-19 12:49:35 +02:00
|
|
|
{
|
2010-07-14 17:55:16 +02:00
|
|
|
typedef unsigned char uchar;
|
2010-07-22 11:31:33 +02:00
|
|
|
typedef signed char schar;
|
2010-07-14 17:55:16 +02:00
|
|
|
typedef unsigned short ushort;
|
2010-07-19 12:49:35 +02:00
|
|
|
typedef unsigned int uint;
|
2010-07-15 16:42:24 +02:00
|
|
|
|
2010-07-14 17:55:16 +02:00
|
|
|
namespace impl
|
2010-07-19 12:49:35 +02:00
|
|
|
{
|
2010-07-14 17:55:16 +02:00
|
|
|
static inline int divUp(int a, int b) { return (a % b == 0) ? a/b : a/b + 1; }
|
2010-07-19 12:49:35 +02:00
|
|
|
|
2010-07-26 17:04:56 +02:00
|
|
|
extern "C" void copy_to_with_mask(const DevMem2D& src, DevMem2D dst, int depth, const DevMem2D& mask, int channels, const cudaStream_t & stream = 0);
|
2010-07-22 16:39:54 +02:00
|
|
|
|
2010-07-26 17:04:56 +02:00
|
|
|
extern "C" void set_to_without_mask (DevMem2D dst, int depth, const double *scalar, int channels, const cudaStream_t & stream = 0);
|
|
|
|
extern "C" void set_to_with_mask (DevMem2D dst, int depth, const double *scalar, const DevMem2D& mask, int channels, const cudaStream_t & stream = 0);
|
2010-07-22 11:31:33 +02:00
|
|
|
|
2010-07-26 17:04:56 +02:00
|
|
|
extern "C" void convert_to(const DevMem2D& src, int sdepth, DevMem2D dst, int ddepth, int channels, double alpha, double beta, const cudaStream_t & stream = 0);
|
2010-07-14 17:55:16 +02:00
|
|
|
}
|
2010-08-24 11:15:45 +02:00
|
|
|
|
|
|
|
template<class T>
|
|
|
|
inline void uploadConstant(const char* name, const T& value) { cudaSafeCall( cudaMemcpyToSymbol(name, &value, sizeof(T)) ); }
|
|
|
|
|
2010-07-14 17:55:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-19 11:31:12 +02:00
|
|
|
|
2010-07-14 17:55:16 +02:00
|
|
|
#endif /* __OPENCV_CUDA_SHARED_HPP__ */
|