2010-09-09 23:34:16 +08: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 GpuMaterials 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 bpied warranties, including, but not limited to, the bpied
|
|
|
|
// 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*/
|
|
|
|
|
|
|
|
#include "precomp.hpp"
|
|
|
|
|
|
|
|
using namespace cv;
|
|
|
|
using namespace cv::gpu;
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#if !defined (HAVE_CUDA)
|
|
|
|
|
2010-09-15 20:47:59 +08:00
|
|
|
void cv::gpu::add(const GpuMat&, const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-09-27 20:44:57 +08:00
|
|
|
void cv::gpu::add(const GpuMat&, const Scalar&, GpuMat&) { throw_nogpu(); }
|
2010-09-15 20:47:59 +08:00
|
|
|
void cv::gpu::subtract(const GpuMat&, const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-09-27 20:44:57 +08:00
|
|
|
void cv::gpu::subtract(const GpuMat&, const Scalar&, GpuMat&) { throw_nogpu(); }
|
2010-09-15 20:47:59 +08:00
|
|
|
void cv::gpu::multiply(const GpuMat&, const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-09-27 20:44:57 +08:00
|
|
|
void cv::gpu::multiply(const GpuMat&, const Scalar&, GpuMat&) { throw_nogpu(); }
|
2010-09-15 20:47:59 +08:00
|
|
|
void cv::gpu::divide(const GpuMat&, const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-09-27 20:44:57 +08:00
|
|
|
void cv::gpu::divide(const GpuMat&, const Scalar&, GpuMat&) { throw_nogpu(); }
|
2010-09-15 20:47:59 +08:00
|
|
|
void cv::gpu::transpose(const GpuMat&, GpuMat&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::absdiff(const GpuMat&, const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-09-27 20:44:57 +08:00
|
|
|
void cv::gpu::absdiff(const GpuMat&, const Scalar&, GpuMat&) { throw_nogpu(); }
|
2010-09-15 20:47:59 +08:00
|
|
|
void cv::gpu::compare(const GpuMat&, const GpuMat&, GpuMat&, int) { throw_nogpu(); }
|
|
|
|
void cv::gpu::meanStdDev(const GpuMat&, Scalar&, Scalar&) { throw_nogpu(); }
|
|
|
|
double cv::gpu::norm(const GpuMat&, int) { throw_nogpu(); return 0.0; }
|
|
|
|
double cv::gpu::norm(const GpuMat&, const GpuMat&, int) { throw_nogpu(); return 0.0; }
|
|
|
|
void cv::gpu::flip(const GpuMat&, GpuMat&, int) { throw_nogpu(); }
|
|
|
|
Scalar cv::gpu::sum(const GpuMat&) { throw_nogpu(); return Scalar(); }
|
|
|
|
void cv::gpu::minMax(const GpuMat&, double*, double*) { throw_nogpu(); }
|
2010-09-27 20:44:57 +08:00
|
|
|
void cv::gpu::LUT(const GpuMat&, const Mat&, GpuMat&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::exp(const GpuMat&, GpuMat&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::log(const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-09-27 22:10:19 +08:00
|
|
|
void cv::gpu::magnitude(const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-10-13 20:52:39 +08:00
|
|
|
void cv::gpu::magnitudeSqr(const GpuMat&, GpuMat&) { throw_nogpu(); }
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::magnitude(const GpuMat&, const GpuMat&, GpuMat&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::magnitude(const GpuMat&, const GpuMat&, GpuMat&, const Stream&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::magnitudeSqr(const GpuMat&, const GpuMat&, GpuMat&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::magnitudeSqr(const GpuMat&, const GpuMat&, GpuMat&, const Stream&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::phase(const GpuMat&, const GpuMat&, GpuMat&, bool) { throw_nogpu(); }
|
|
|
|
void cv::gpu::phase(const GpuMat&, const GpuMat&, GpuMat&, bool, const Stream&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::cartToPolar(const GpuMat&, const GpuMat&, GpuMat&, GpuMat&, bool) { throw_nogpu(); }
|
|
|
|
void cv::gpu::cartToPolar(const GpuMat&, const GpuMat&, GpuMat&, GpuMat&, bool, const Stream&) { throw_nogpu(); }
|
|
|
|
void cv::gpu::polarToCart(const GpuMat&, const GpuMat&, GpuMat&, GpuMat&, bool) { throw_nogpu(); }
|
|
|
|
void cv::gpu::polarToCart(const GpuMat&, const GpuMat&, GpuMat&, GpuMat&, bool, const Stream&) { throw_nogpu(); }
|
2010-09-15 16:26:18 +08:00
|
|
|
|
2010-09-09 23:34:16 +08:00
|
|
|
#else /* !defined (HAVE_CUDA) */
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// add subtract multiply divide
|
|
|
|
|
2010-09-13 22:30:09 +08:00
|
|
|
namespace
|
2010-09-20 18:34:46 +08:00
|
|
|
{
|
|
|
|
typedef NppStatus (*npp_arithm_8u_t)(const Npp8u* pSrc1, int nSrc1Step, const Npp8u* pSrc2, int nSrc2Step, Npp8u* pDst, int nDstStep,
|
|
|
|
NppiSize oSizeROI, int nScaleFactor);
|
2010-09-27 20:44:57 +08:00
|
|
|
typedef NppStatus (*npp_arithm_32s_t)(const Npp32s* pSrc1, int nSrc1Step, const Npp32s* pSrc2, int nSrc2Step, Npp32s* pDst,
|
|
|
|
int nDstStep, NppiSize oSizeROI);
|
2010-09-20 18:34:46 +08:00
|
|
|
typedef NppStatus (*npp_arithm_32f_t)(const Npp32f* pSrc1, int nSrc1Step, const Npp32f* pSrc2, int nSrc2Step, Npp32f* pDst,
|
2010-09-27 20:44:57 +08:00
|
|
|
int nDstStep, NppiSize oSizeROI);
|
2010-09-13 22:30:09 +08:00
|
|
|
|
2010-09-27 20:44:57 +08:00
|
|
|
void nppArithmCaller(const GpuMat& src1, const GpuMat& src2, GpuMat& dst,
|
|
|
|
npp_arithm_8u_t npp_func_8uc1, npp_arithm_8u_t npp_func_8uc4,
|
|
|
|
npp_arithm_32s_t npp_func_32sc1, npp_arithm_32f_t npp_func_32fc1)
|
2010-09-13 22:30:09 +08:00
|
|
|
{
|
|
|
|
CV_DbgAssert(src1.size() == src2.size() && src1.type() == src2.type());
|
|
|
|
|
2010-09-27 20:44:57 +08:00
|
|
|
CV_Assert(src1.type() == CV_8UC1 || src1.type() == CV_8UC4 || src1.type() == CV_32SC1 || src1.type() == CV_32FC1);
|
2010-09-13 22:30:09 +08:00
|
|
|
|
|
|
|
dst.create( src1.size(), src1.type() );
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src1.cols;
|
|
|
|
sz.height = src1.rows;
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
switch (src1.type())
|
|
|
|
{
|
|
|
|
case CV_8UC1:
|
|
|
|
nppSafeCall( npp_func_8uc1(src1.ptr<Npp8u>(), src1.step,
|
|
|
|
src2.ptr<Npp8u>(), src2.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz, 0) );
|
|
|
|
break;
|
|
|
|
case CV_8UC4:
|
|
|
|
nppSafeCall( npp_func_8uc4(src1.ptr<Npp8u>(), src1.step,
|
|
|
|
src2.ptr<Npp8u>(), src2.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz, 0) );
|
|
|
|
break;
|
2010-09-27 20:44:57 +08:00
|
|
|
case CV_32SC1:
|
|
|
|
nppSafeCall( npp_func_32sc1(src1.ptr<Npp32s>(), src1.step,
|
|
|
|
src2.ptr<Npp32s>(), src2.step,
|
|
|
|
dst.ptr<Npp32s>(), dst.step, sz) );
|
|
|
|
break;
|
2010-09-20 18:34:46 +08:00
|
|
|
case CV_32FC1:
|
|
|
|
nppSafeCall( npp_func_32fc1(src1.ptr<Npp32f>(), src1.step,
|
|
|
|
src2.ptr<Npp32f>(), src2.step,
|
|
|
|
dst.ptr<Npp32f>(), dst.step, sz) );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CV_Assert(!"Unsupported source type");
|
|
|
|
}
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-10-13 20:52:39 +08:00
|
|
|
template<int SCN> struct NppArithmScalarFunc;
|
|
|
|
template<> struct NppArithmScalarFunc<1>
|
|
|
|
{
|
|
|
|
typedef NppStatus (*func_ptr)(const Npp32f *pSrc, int nSrcStep, Npp32f nValue, Npp32f *pDst,
|
|
|
|
int nDstStep, NppiSize oSizeROI);
|
|
|
|
};
|
|
|
|
template<> struct NppArithmScalarFunc<2>
|
|
|
|
{
|
|
|
|
typedef NppStatus (*func_ptr)(const Npp32fc *pSrc, int nSrcStep, Npp32fc nValue, Npp32fc *pDst,
|
|
|
|
int nDstStep, NppiSize oSizeROI);
|
|
|
|
};
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-10-13 20:52:39 +08:00
|
|
|
template<int SCN, typename NppArithmScalarFunc<SCN>::func_ptr func> struct NppArithmScalar;
|
|
|
|
template<typename NppArithmScalarFunc<1>::func_ptr func> struct NppArithmScalar<1, func>
|
|
|
|
{
|
|
|
|
static void calc(const GpuMat& src, const Scalar& sc, GpuMat& dst)
|
|
|
|
{
|
|
|
|
dst.create(src.size(), src.type());
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-10-13 20:52:39 +08:00
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-10-13 20:52:39 +08:00
|
|
|
nppSafeCall( func(src.ptr<Npp32f>(), src.step, (Npp32f)sc[0], dst.ptr<Npp32f>(), dst.step, sz) );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename NppArithmScalarFunc<2>::func_ptr func> struct NppArithmScalar<2, func>
|
|
|
|
{
|
|
|
|
static void calc(const GpuMat& src, const Scalar& sc, GpuMat& dst)
|
|
|
|
{
|
|
|
|
dst.create(src.size(), src.type());
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-10-13 20:52:39 +08:00
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
|
|
|
Npp32fc nValue;
|
|
|
|
nValue.re = (Npp32f)sc[0];
|
|
|
|
nValue.im = (Npp32f)sc[1];
|
|
|
|
|
|
|
|
nppSafeCall( func(src.ptr<Npp32fc>(), src.step, nValue, dst.ptr<Npp32fc>(), dst.step, sz) );
|
|
|
|
}
|
|
|
|
};
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
2010-09-09 23:34:16 +08:00
|
|
|
void cv::gpu::add(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
|
|
|
|
{
|
2010-09-27 20:44:57 +08:00
|
|
|
nppArithmCaller(src1, src2, dst, nppiAdd_8u_C1RSfs, nppiAdd_8u_C4RSfs, nppiAdd_32s_C1R, nppiAdd_32f_C1R);
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::subtract(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
|
|
|
|
{
|
2010-09-27 20:44:57 +08:00
|
|
|
nppArithmCaller(src2, src1, dst, nppiSub_8u_C1RSfs, nppiSub_8u_C4RSfs, nppiSub_32s_C1R, nppiSub_32f_C1R);
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::multiply(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
|
|
|
|
{
|
2010-09-27 20:44:57 +08:00
|
|
|
nppArithmCaller(src1, src2, dst, nppiMul_8u_C1RSfs, nppiMul_8u_C4RSfs, nppiMul_32s_C1R, nppiMul_32f_C1R);
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::divide(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
|
|
|
|
{
|
2010-09-27 20:44:57 +08:00
|
|
|
nppArithmCaller(src2, src1, dst, nppiDiv_8u_C1RSfs, nppiDiv_8u_C4RSfs, nppiDiv_32s_C1R, nppiDiv_32f_C1R);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::add(const GpuMat& src, const Scalar& sc, GpuMat& dst)
|
|
|
|
{
|
2010-10-13 20:52:39 +08:00
|
|
|
typedef void (*caller_t)(const GpuMat& src, const Scalar& sc, GpuMat& dst);
|
|
|
|
static const caller_t callers[] = {NppArithmScalar<1, nppiAddC_32f_C1R>::calc, NppArithmScalar<2, nppiAddC_32fc_C1R>::calc};
|
|
|
|
|
|
|
|
CV_Assert(src.type() == CV_32FC1 || src.type() == CV_32FC2);
|
|
|
|
|
|
|
|
callers[src.channels()](src, sc, dst);
|
2010-09-27 20:44:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::subtract(const GpuMat& src, const Scalar& sc, GpuMat& dst)
|
|
|
|
{
|
2010-10-13 20:52:39 +08:00
|
|
|
typedef void (*caller_t)(const GpuMat& src, const Scalar& sc, GpuMat& dst);
|
|
|
|
static const caller_t callers[] = {NppArithmScalar<1, nppiSubC_32f_C1R>::calc, NppArithmScalar<2, nppiSubC_32fc_C1R>::calc};
|
|
|
|
|
|
|
|
CV_Assert(src.type() == CV_32FC1 || src.type() == CV_32FC2);
|
|
|
|
|
|
|
|
callers[src.channels()](src, sc, dst);
|
2010-09-27 20:44:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::multiply(const GpuMat& src, const Scalar& sc, GpuMat& dst)
|
|
|
|
{
|
2010-10-13 20:52:39 +08:00
|
|
|
typedef void (*caller_t)(const GpuMat& src, const Scalar& sc, GpuMat& dst);
|
|
|
|
static const caller_t callers[] = {NppArithmScalar<1, nppiMulC_32f_C1R>::calc, NppArithmScalar<2, nppiMulC_32fc_C1R>::calc};
|
|
|
|
|
|
|
|
CV_Assert(src.type() == CV_32FC1 || src.type() == CV_32FC2);
|
|
|
|
|
|
|
|
callers[src.channels()](src, sc, dst);
|
2010-09-27 20:44:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::divide(const GpuMat& src, const Scalar& sc, GpuMat& dst)
|
|
|
|
{
|
2010-10-13 20:52:39 +08:00
|
|
|
typedef void (*caller_t)(const GpuMat& src, const Scalar& sc, GpuMat& dst);
|
|
|
|
static const caller_t callers[] = {NppArithmScalar<1, nppiDivC_32f_C1R>::calc, NppArithmScalar<2, nppiDivC_32fc_C1R>::calc};
|
|
|
|
|
|
|
|
CV_Assert(src.type() == CV_32FC1 || src.type() == CV_32FC2);
|
|
|
|
|
|
|
|
callers[src.channels()](src, sc, dst);
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// transpose
|
|
|
|
|
2010-09-13 22:30:09 +08:00
|
|
|
void cv::gpu::transpose(const GpuMat& src, GpuMat& dst)
|
|
|
|
{
|
|
|
|
CV_Assert(src.type() == CV_8UC1);
|
|
|
|
|
|
|
|
dst.create( src.cols, src.rows, src.type() );
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
nppSafeCall( nppiTranspose_8u_C1R(src.ptr<Npp8u>(), src.step, dst.ptr<Npp8u>(), dst.step, sz) );
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// absdiff
|
|
|
|
|
2010-09-13 22:30:09 +08:00
|
|
|
void cv::gpu::absdiff(const GpuMat& src1, const GpuMat& src2, GpuMat& dst)
|
|
|
|
{
|
|
|
|
CV_DbgAssert(src1.size() == src2.size() && src1.type() == src2.type());
|
|
|
|
|
2010-09-27 20:44:57 +08:00
|
|
|
CV_Assert(src1.type() == CV_8UC1 || src1.type() == CV_8UC4 || src1.type() == CV_32SC1 || src1.type() == CV_32FC1);
|
2010-09-13 22:30:09 +08:00
|
|
|
|
2010-09-10 23:04:54 +08:00
|
|
|
dst.create( src1.size(), src1.type() );
|
|
|
|
|
2010-09-13 22:30:09 +08:00
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src1.cols;
|
|
|
|
sz.height = src1.rows;
|
2010-09-09 23:34:16 +08:00
|
|
|
|
2010-09-27 20:44:57 +08:00
|
|
|
switch (src1.type())
|
2010-09-13 22:30:09 +08:00
|
|
|
{
|
2010-09-27 20:44:57 +08:00
|
|
|
case CV_8UC1:
|
2010-09-20 18:34:46 +08:00
|
|
|
nppSafeCall( nppiAbsDiff_8u_C1R(src1.ptr<Npp8u>(), src1.step,
|
|
|
|
src2.ptr<Npp8u>(), src2.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz) );
|
2010-09-27 20:44:57 +08:00
|
|
|
break;
|
|
|
|
case CV_8UC4:
|
|
|
|
nppSafeCall( nppiAbsDiff_8u_C4R(src1.ptr<Npp8u>(), src1.step,
|
|
|
|
src2.ptr<Npp8u>(), src2.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz) );
|
|
|
|
break;
|
|
|
|
case CV_32SC1:
|
|
|
|
nppSafeCall( nppiAbsDiff_32s_C1R(src1.ptr<Npp32s>(), src1.step,
|
|
|
|
src2.ptr<Npp32s>(), src2.step,
|
|
|
|
dst.ptr<Npp32s>(), dst.step, sz) );
|
|
|
|
break;
|
|
|
|
case CV_32FC1:
|
2010-09-20 18:34:46 +08:00
|
|
|
nppSafeCall( nppiAbsDiff_32f_C1R(src1.ptr<Npp32f>(), src1.step,
|
|
|
|
src2.ptr<Npp32f>(), src2.step,
|
|
|
|
dst.ptr<Npp32f>(), dst.step, sz) );
|
2010-09-27 20:44:57 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
CV_Assert(!"Unsupported source type");
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-27 20:44:57 +08:00
|
|
|
void cv::gpu::absdiff(const GpuMat& src, const Scalar& s, GpuMat& dst)
|
|
|
|
{
|
|
|
|
CV_Assert(src.type() == CV_32FC1);
|
|
|
|
|
|
|
|
dst.create( src.size(), src.type() );
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
|
|
|
nppSafeCall( nppiAbsDiffC_32f_C1R(src.ptr<Npp32f>(), src.step, dst.ptr<Npp32f>(), dst.step, sz, (Npp32f)s[0]) );
|
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// compare
|
2010-09-13 22:30:09 +08:00
|
|
|
|
2010-10-20 16:50:14 +08:00
|
|
|
namespace cv { namespace gpu { namespace mathfunc
|
2010-09-20 18:34:46 +08:00
|
|
|
{
|
2010-10-20 16:50:14 +08:00
|
|
|
void compare_ne_8uc4(const DevMem2D& src1, const DevMem2D& src2, const DevMem2D& dst);
|
2010-09-20 18:34:46 +08:00
|
|
|
void compare_ne_32f(const DevMem2D& src1, const DevMem2D& src2, const DevMem2D& dst);
|
|
|
|
}}}
|
|
|
|
|
2010-09-13 22:30:09 +08:00
|
|
|
void cv::gpu::compare(const GpuMat& src1, const GpuMat& src2, GpuMat& dst, int cmpop)
|
|
|
|
{
|
|
|
|
CV_DbgAssert(src1.size() == src2.size() && src1.type() == src2.type());
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
CV_Assert(src1.type() == CV_8UC4 || src1.type() == CV_32FC1);
|
2010-09-13 22:30:09 +08:00
|
|
|
|
|
|
|
dst.create( src1.size(), CV_8UC1 );
|
|
|
|
|
|
|
|
static const NppCmpOp nppCmpOp[] = { NPP_CMP_EQ, NPP_CMP_GREATER, NPP_CMP_GREATER_EQ, NPP_CMP_LESS, NPP_CMP_LESS_EQ };
|
2010-09-09 23:34:16 +08:00
|
|
|
|
|
|
|
NppiSize sz;
|
2010-09-10 23:04:54 +08:00
|
|
|
sz.width = src1.cols;
|
2010-09-09 23:34:16 +08:00
|
|
|
sz.height = src1.rows;
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
if (src1.type() == CV_8UC4)
|
2010-09-09 23:34:16 +08:00
|
|
|
{
|
2010-09-20 18:34:46 +08:00
|
|
|
if (cmpop != CMP_NE)
|
|
|
|
{
|
|
|
|
nppSafeCall( nppiCompare_8u_C4R(src1.ptr<Npp8u>(), src1.step,
|
|
|
|
src2.ptr<Npp8u>(), src2.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz, nppCmpOp[cmpop]) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-20 16:50:14 +08:00
|
|
|
mathfunc::compare_ne_8uc4(src1, src2, dst);
|
2010-09-20 18:34:46 +08:00
|
|
|
}
|
2010-09-10 23:04:54 +08:00
|
|
|
}
|
2010-09-20 18:34:46 +08:00
|
|
|
else
|
2010-09-10 23:04:54 +08:00
|
|
|
{
|
2010-09-20 18:34:46 +08:00
|
|
|
if (cmpop != CMP_NE)
|
|
|
|
{
|
|
|
|
nppSafeCall( nppiCompare_32f_C1R(src1.ptr<Npp32f>(), src1.step,
|
|
|
|
src2.ptr<Npp32f>(), src2.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz, nppCmpOp[cmpop]) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-10-20 16:50:14 +08:00
|
|
|
mathfunc::compare_ne_32f(src1, src2, dst);
|
2010-09-20 18:34:46 +08:00
|
|
|
}
|
2010-09-09 23:34:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// meanStdDev
|
|
|
|
|
2010-09-13 22:30:09 +08:00
|
|
|
void cv::gpu::meanStdDev(const GpuMat& src, Scalar& mean, Scalar& stddev)
|
|
|
|
{
|
|
|
|
CV_Assert(src.type() == CV_8UC1);
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
nppSafeCall( nppiMean_StdDev_8u_C1R(src.ptr<Npp8u>(), src.step, sz, mean.val, stddev.val) );
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// norm
|
|
|
|
|
2010-09-13 22:30:09 +08:00
|
|
|
double cv::gpu::norm(const GpuMat& src1, int normType)
|
|
|
|
{
|
|
|
|
return norm(src1, GpuMat(src1.size(), src1.type(), Scalar::all(0.0)), normType);
|
|
|
|
}
|
|
|
|
|
|
|
|
double cv::gpu::norm(const GpuMat& src1, const GpuMat& src2, int normType)
|
|
|
|
{
|
|
|
|
CV_DbgAssert(src1.size() == src2.size() && src1.type() == src2.type());
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
CV_Assert(src1.type() == CV_8UC1);
|
|
|
|
CV_Assert(normType == NORM_INF || normType == NORM_L1 || normType == NORM_L2);
|
2010-09-13 22:30:09 +08:00
|
|
|
|
|
|
|
typedef NppStatus (*npp_norm_diff_func_t)(const Npp8u* pSrc1, int nSrcStep1, const Npp8u* pSrc2, int nSrcStep2,
|
|
|
|
NppiSize oSizeROI, Npp64f* pRetVal);
|
|
|
|
|
|
|
|
static const npp_norm_diff_func_t npp_norm_diff_func[] = {nppiNormDiff_Inf_8u_C1R, nppiNormDiff_L1_8u_C1R, nppiNormDiff_L2_8u_C1R};
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src1.cols;
|
|
|
|
sz.height = src1.rows;
|
|
|
|
|
|
|
|
int funcIdx = normType >> 1;
|
2010-09-27 17:37:43 +08:00
|
|
|
double retVal;
|
2010-09-13 22:30:09 +08:00
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
nppSafeCall( npp_norm_diff_func[funcIdx](src1.ptr<Npp8u>(), src1.step,
|
|
|
|
src2.ptr<Npp8u>(), src2.step,
|
2010-09-27 17:37:43 +08:00
|
|
|
sz, &retVal) );
|
2010-09-13 22:30:09 +08:00
|
|
|
|
2010-09-27 17:37:43 +08:00
|
|
|
return retVal;
|
2010-09-13 22:30:09 +08:00
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// flip
|
|
|
|
|
2010-09-15 16:26:18 +08:00
|
|
|
void cv::gpu::flip(const GpuMat& src, GpuMat& dst, int flipCode)
|
|
|
|
{
|
|
|
|
CV_Assert(src.type() == CV_8UC1 || src.type() == CV_8UC4);
|
|
|
|
|
|
|
|
dst.create( src.size(), src.type() );
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
if (src.type() == CV_8UC1)
|
2010-09-15 16:26:18 +08:00
|
|
|
{
|
2010-09-20 18:34:46 +08:00
|
|
|
nppSafeCall( nppiMirror_8u_C1R(src.ptr<Npp8u>(), src.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz,
|
2010-09-15 22:34:41 +08:00
|
|
|
(flipCode == 0 ? NPP_HORIZONTAL_AXIS : (flipCode > 0 ? NPP_VERTICAL_AXIS : NPP_BOTH_AXIS))) );
|
2010-09-15 16:26:18 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-09-20 18:34:46 +08:00
|
|
|
nppSafeCall( nppiMirror_8u_C4R(src.ptr<Npp8u>(), src.step,
|
|
|
|
dst.ptr<Npp8u>(), dst.step, sz,
|
2010-09-15 22:34:41 +08:00
|
|
|
(flipCode == 0 ? NPP_HORIZONTAL_AXIS : (flipCode > 0 ? NPP_VERTICAL_AXIS : NPP_BOTH_AXIS))) );
|
2010-09-15 16:26:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// sum
|
2010-09-15 16:26:18 +08:00
|
|
|
|
|
|
|
Scalar cv::gpu::sum(const GpuMat& src)
|
|
|
|
{
|
2010-10-06 22:32:13 +08:00
|
|
|
CV_Assert(!"disabled until fix crash");
|
2010-09-27 17:37:43 +08:00
|
|
|
CV_Assert(src.type() == CV_8UC1 || src.type() == CV_8UC4);
|
2010-09-15 16:26:18 +08:00
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
2010-09-25 00:41:34 +08:00
|
|
|
int bufsz;
|
|
|
|
|
2010-09-20 18:34:46 +08:00
|
|
|
if (src.type() == CV_8UC1)
|
2010-09-25 00:41:34 +08:00
|
|
|
{
|
|
|
|
nppiReductionGetBufferHostSize_8u_C1R(sz, &bufsz);
|
|
|
|
GpuMat buf(1, bufsz, CV_32S);
|
2010-09-27 14:57:25 +08:00
|
|
|
|
|
|
|
Scalar res;
|
2010-09-27 17:37:43 +08:00
|
|
|
nppSafeCall( nppiSum_8u_C1R(src.ptr<Npp8u>(), src.step, sz, buf.ptr<Npp32s>(), res.val) );
|
2010-09-27 14:57:25 +08:00
|
|
|
return res;
|
2010-09-15 16:26:18 +08:00
|
|
|
}
|
|
|
|
else
|
2010-09-25 00:41:34 +08:00
|
|
|
{
|
|
|
|
nppiReductionGetBufferHostSize_8u_C4R(sz, &bufsz);
|
|
|
|
GpuMat buf(1, bufsz, CV_32S);
|
2010-09-27 14:57:25 +08:00
|
|
|
|
|
|
|
Scalar res;
|
2010-09-25 00:41:34 +08:00
|
|
|
nppSafeCall( nppiSum_8u_C4R(src.ptr<Npp8u>(), src.step, sz, buf.ptr<Npp32s>(), res.val) );
|
2010-09-27 14:57:25 +08:00
|
|
|
return res;
|
2010-09-15 16:26:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// minMax
|
|
|
|
|
2010-10-11 16:54:28 +08:00
|
|
|
namespace
|
2010-09-15 16:26:18 +08:00
|
|
|
{
|
2010-10-11 16:54:28 +08:00
|
|
|
void minMax_c1(const GpuMat& src, double* minVal, double* maxVal)
|
|
|
|
{
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
2010-09-15 16:26:18 +08:00
|
|
|
|
2010-10-11 16:54:28 +08:00
|
|
|
Npp8u min_res, max_res;
|
|
|
|
|
|
|
|
nppSafeCall( nppiMinMax_8u_C1R(src.ptr<Npp8u>(), src.step, sz, &min_res, &max_res) );
|
2010-09-15 16:26:18 +08:00
|
|
|
|
2010-10-11 16:54:28 +08:00
|
|
|
if (minVal)
|
|
|
|
*minVal = min_res;
|
2010-09-15 16:26:18 +08:00
|
|
|
|
2010-10-11 16:54:28 +08:00
|
|
|
if (maxVal)
|
|
|
|
*maxVal = max_res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void minMax_c4(const GpuMat& src, double* minVal, double* maxVal)
|
|
|
|
{
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
2010-09-15 16:26:18 +08:00
|
|
|
|
2010-10-11 16:54:28 +08:00
|
|
|
Npp8u* cuMin = nppsMalloc_8u(4);
|
|
|
|
Npp8u* cuMax = nppsMalloc_8u(4);
|
|
|
|
|
|
|
|
nppSafeCall( nppiMinMax_8u_C4R(src.ptr<Npp8u>(), src.step, sz, cuMin, cuMax) );
|
|
|
|
|
|
|
|
if (minVal)
|
|
|
|
cudaMemcpy(minVal, cuMin, 4 * sizeof(Npp8u), cudaMemcpyDeviceToHost);
|
|
|
|
if (maxVal)
|
|
|
|
cudaMemcpy(maxVal, cuMax, 4 * sizeof(Npp8u), cudaMemcpyDeviceToHost);
|
|
|
|
|
|
|
|
nppsFree(cuMin);
|
|
|
|
nppsFree(cuMax);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cv::gpu::minMax(const GpuMat& src, double* minVal, double* maxVal)
|
|
|
|
{
|
|
|
|
typedef void (*minMax_t)(const GpuMat& src, double* minVal, double* maxVal);
|
|
|
|
static const minMax_t minMax_callers[] = {0, minMax_c1, 0, 0, minMax_c4};
|
|
|
|
|
|
|
|
CV_Assert(!"disabled until fix npp bug");
|
|
|
|
CV_Assert(src.type() == CV_8UC1 || src.type() == CV_8UC4);
|
2010-09-15 16:26:18 +08:00
|
|
|
|
2010-10-11 16:54:28 +08:00
|
|
|
minMax_callers[src.channels()](src, minVal, maxVal);
|
2010-09-15 16:26:18 +08:00
|
|
|
}
|
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// LUT
|
2010-09-15 16:26:18 +08:00
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
void cv::gpu::LUT(const GpuMat& src, const Mat& lut, GpuMat& dst)
|
|
|
|
{
|
|
|
|
class LevelsInit
|
2010-09-15 20:47:59 +08:00
|
|
|
{
|
2010-09-22 18:58:01 +08:00
|
|
|
public:
|
|
|
|
Npp32s pLevels[256];
|
2010-09-27 17:37:43 +08:00
|
|
|
const Npp32s* pLevels3[3];
|
|
|
|
int nValues3[3];
|
2010-09-15 20:47:59 +08:00
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
LevelsInit()
|
2010-09-27 17:37:43 +08:00
|
|
|
{
|
|
|
|
nValues3[0] = nValues3[1] = nValues3[2] = 256;
|
2010-09-22 18:58:01 +08:00
|
|
|
for (int i = 0; i < 256; ++i)
|
|
|
|
pLevels[i] = i;
|
2010-09-27 17:37:43 +08:00
|
|
|
pLevels3[0] = pLevels3[1] = pLevels3[2] = pLevels;
|
2010-09-15 20:47:59 +08:00
|
|
|
}
|
2010-09-22 18:58:01 +08:00
|
|
|
};
|
|
|
|
static LevelsInit lvls;
|
2010-09-15 20:47:59 +08:00
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
int cn = src.channels();
|
2010-09-15 20:47:59 +08:00
|
|
|
|
2010-09-27 17:37:43 +08:00
|
|
|
CV_Assert(src.type() == CV_8UC1 || src.type() == CV_8UC3);
|
|
|
|
CV_Assert(lut.depth() == CV_8U && (lut.channels() == 1 || lut.channels() == cn) && lut.rows * lut.cols == 256 && lut.isContinuous());
|
2010-09-15 20:47:59 +08:00
|
|
|
|
2010-09-27 17:37:43 +08:00
|
|
|
dst.create(src.size(), CV_MAKETYPE(lut.depth(), cn));
|
2010-09-15 20:47:59 +08:00
|
|
|
|
2010-09-22 18:58:01 +08:00
|
|
|
NppiSize sz;
|
|
|
|
sz.height = src.rows;
|
|
|
|
sz.width = src.cols;
|
2010-09-27 17:37:43 +08:00
|
|
|
|
|
|
|
Mat nppLut;
|
|
|
|
lut.convertTo(nppLut, CV_32S);
|
2010-09-15 20:47:59 +08:00
|
|
|
|
2010-09-27 17:37:43 +08:00
|
|
|
if (src.type() == CV_8UC1)
|
|
|
|
{
|
|
|
|
nppSafeCall( nppiLUT_Linear_8u_C1R(src.ptr<Npp8u>(), src.step, dst.ptr<Npp8u>(), dst.step, sz,
|
|
|
|
nppLut.ptr<Npp32s>(), lvls.pLevels, 256) );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Mat nppLut3[3];
|
|
|
|
const Npp32s* pValues3[3];
|
|
|
|
if (nppLut.channels() == 1)
|
|
|
|
pValues3[0] = pValues3[1] = pValues3[2] = nppLut.ptr<Npp32s>();
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cv::split(nppLut, nppLut3);
|
|
|
|
pValues3[0] = nppLut3[0].ptr<Npp32s>();
|
|
|
|
pValues3[1] = nppLut3[1].ptr<Npp32s>();
|
|
|
|
pValues3[2] = nppLut3[2].ptr<Npp32s>();
|
|
|
|
}
|
|
|
|
nppSafeCall( nppiLUT_Linear_8u_C3R(src.ptr<Npp8u>(), src.step, dst.ptr<Npp8u>(), dst.step, sz,
|
|
|
|
pValues3, lvls.pLevels3, lvls.nValues3) );
|
|
|
|
}
|
2010-09-15 20:47:59 +08:00
|
|
|
}
|
|
|
|
|
2010-09-27 20:44:57 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// exp
|
|
|
|
|
|
|
|
void cv::gpu::exp(const GpuMat& src, GpuMat& dst)
|
|
|
|
{
|
|
|
|
CV_Assert(src.type() == CV_32FC1);
|
|
|
|
|
|
|
|
dst.create(src.size(), src.type());
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
|
|
|
nppSafeCall( nppiExp_32f_C1R(src.ptr<Npp32f>(), src.step, dst.ptr<Npp32f>(), dst.step, sz) );
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// log
|
|
|
|
|
|
|
|
void cv::gpu::log(const GpuMat& src, GpuMat& dst)
|
|
|
|
{
|
|
|
|
CV_Assert(src.type() == CV_32FC1);
|
|
|
|
|
|
|
|
dst.create(src.size(), src.type());
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
|
|
|
nppSafeCall( nppiLn_32f_C1R(src.ptr<Npp32f>(), src.step, dst.ptr<Npp32f>(), dst.step, sz) );
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2010-10-18 19:12:14 +08:00
|
|
|
// NPP magnitide
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
typedef NppStatus (*nppMagnitude_t)(const Npp32fc* pSrc, int nSrcStep, Npp32f* pDst, int nDstStep, NppiSize oSizeROI);
|
|
|
|
|
|
|
|
inline void npp_magnitude(const GpuMat& src, GpuMat& dst, nppMagnitude_t func)
|
|
|
|
{
|
|
|
|
CV_Assert(src.type() == CV_32FC2);
|
|
|
|
|
|
|
|
dst.create(src.size(), CV_32FC1);
|
|
|
|
|
|
|
|
NppiSize sz;
|
|
|
|
sz.width = src.cols;
|
|
|
|
sz.height = src.rows;
|
|
|
|
|
|
|
|
nppSafeCall( func(src.ptr<Npp32fc>(), src.step, dst.ptr<Npp32f>(), dst.step, sz) );
|
|
|
|
}
|
|
|
|
}
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-09-27 22:10:19 +08:00
|
|
|
void cv::gpu::magnitude(const GpuMat& src, GpuMat& dst)
|
|
|
|
{
|
2010-10-18 19:12:14 +08:00
|
|
|
::npp_magnitude(src, dst, nppiMagnitude_32fc32f_C1R);
|
|
|
|
}
|
2010-09-27 22:10:19 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::magnitudeSqr(const GpuMat& src, GpuMat& dst)
|
|
|
|
{
|
|
|
|
::npp_magnitude(src, dst, nppiMagnitudeSqr_32fc32f_C1R);
|
|
|
|
}
|
2010-09-27 22:10:19 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
// Polar <-> Cart
|
2010-09-27 22:10:19 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
namespace cv { namespace gpu { namespace mathfunc
|
|
|
|
{
|
|
|
|
void cartToPolar_gpu(const DevMem2Df& x, const DevMem2Df& y, const DevMem2Df& mag, bool magSqr, const DevMem2Df& angle, bool angleInDegrees, cudaStream_t stream);
|
|
|
|
void polarToCart_gpu(const DevMem2Df& mag, const DevMem2Df& angle, const DevMem2Df& x, const DevMem2Df& y, bool angleInDegrees, cudaStream_t stream);
|
|
|
|
}}}
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
inline void cartToPolar_caller(const GpuMat& x, const GpuMat& y, GpuMat* mag, bool magSqr, GpuMat* angle, bool angleInDegrees, cudaStream_t stream)
|
2010-10-18 19:12:14 +08:00
|
|
|
{
|
|
|
|
CV_DbgAssert(x.size() == y.size() && x.type() == y.type());
|
|
|
|
CV_Assert(x.depth() == CV_32F);
|
|
|
|
|
2010-10-26 13:44:50 +08:00
|
|
|
if (mag)
|
|
|
|
mag->create(x.size(), x.type());
|
|
|
|
if (angle)
|
|
|
|
angle->create(x.size(), x.type());
|
2010-10-18 19:12:14 +08:00
|
|
|
|
|
|
|
GpuMat x1cn = x.reshape(1);
|
|
|
|
GpuMat y1cn = y.reshape(1);
|
2010-10-26 13:44:50 +08:00
|
|
|
GpuMat mag1cn = mag ? mag->reshape(1) : GpuMat();
|
|
|
|
GpuMat angle1cn = angle ? angle->reshape(1) : GpuMat();
|
2010-10-18 19:12:14 +08:00
|
|
|
|
|
|
|
mathfunc::cartToPolar_gpu(x1cn, y1cn, mag1cn, magSqr, angle1cn, angleInDegrees, stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void polarToCart_caller(const GpuMat& mag, const GpuMat& angle, GpuMat& x, GpuMat& y, bool angleInDegrees, cudaStream_t stream)
|
|
|
|
{
|
|
|
|
CV_DbgAssert((mag.empty() || mag.size() == angle.size()) && mag.type() == angle.type());
|
|
|
|
CV_Assert(mag.depth() == CV_32F);
|
|
|
|
|
|
|
|
x.create(mag.size(), mag.type());
|
|
|
|
y.create(mag.size(), mag.type());
|
|
|
|
|
|
|
|
GpuMat mag1cn = mag.reshape(1);
|
|
|
|
GpuMat angle1cn = angle.reshape(1);
|
|
|
|
GpuMat x1cn = x.reshape(1);
|
|
|
|
GpuMat y1cn = y.reshape(1);
|
|
|
|
|
|
|
|
mathfunc::polarToCart_gpu(mag1cn, angle1cn, x1cn, y1cn, angleInDegrees, stream);
|
|
|
|
}
|
2010-09-27 22:10:19 +08:00
|
|
|
}
|
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::magnitude(const GpuMat& x, const GpuMat& y, GpuMat& dst)
|
2010-09-27 20:44:57 +08:00
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, &dst, false, 0, false, 0);
|
2010-10-18 19:12:14 +08:00
|
|
|
}
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::magnitude(const GpuMat& x, const GpuMat& y, GpuMat& dst, const Stream& stream)
|
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, &dst, false, 0, false, StreamAccessor::getStream(stream));
|
2010-10-18 19:12:14 +08:00
|
|
|
}
|
2010-09-27 20:44:57 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::magnitudeSqr(const GpuMat& x, const GpuMat& y, GpuMat& dst)
|
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, &dst, true, 0, false, 0);
|
2010-09-27 20:44:57 +08:00
|
|
|
}
|
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::magnitudeSqr(const GpuMat& x, const GpuMat& y, GpuMat& dst, const Stream& stream)
|
2010-10-13 20:52:39 +08:00
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, &dst, true, 0, false, StreamAccessor::getStream(stream));
|
2010-10-18 19:12:14 +08:00
|
|
|
}
|
2010-10-13 20:52:39 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::phase(const GpuMat& x, const GpuMat& y, GpuMat& angle, bool angleInDegrees)
|
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, 0, false, &angle, angleInDegrees, 0);
|
2010-10-18 19:12:14 +08:00
|
|
|
}
|
2010-10-13 20:52:39 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::phase(const GpuMat& x, const GpuMat& y, GpuMat& angle, bool angleInDegrees, const Stream& stream)
|
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, 0, false, &angle, angleInDegrees, StreamAccessor::getStream(stream));
|
2010-10-18 19:12:14 +08:00
|
|
|
}
|
2010-10-13 20:52:39 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::cartToPolar(const GpuMat& x, const GpuMat& y, GpuMat& mag, GpuMat& angle, bool angleInDegrees)
|
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, &mag, false, &angle, angleInDegrees, 0);
|
2010-10-13 20:52:39 +08:00
|
|
|
}
|
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::cartToPolar(const GpuMat& x, const GpuMat& y, GpuMat& mag, GpuMat& angle, bool angleInDegrees, const Stream& stream)
|
2010-10-13 20:52:39 +08:00
|
|
|
{
|
2010-10-26 13:44:50 +08:00
|
|
|
::cartToPolar_caller(x, y, &mag, false, &angle, angleInDegrees, StreamAccessor::getStream(stream));
|
2010-10-18 19:12:14 +08:00
|
|
|
}
|
2010-10-13 20:52:39 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::polarToCart(const GpuMat& magnitude, const GpuMat& angle, GpuMat& x, GpuMat& y, bool angleInDegrees)
|
|
|
|
{
|
|
|
|
::polarToCart_caller(magnitude, angle, x, y, angleInDegrees, 0);
|
|
|
|
}
|
2010-10-13 20:52:39 +08:00
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
void cv::gpu::polarToCart(const GpuMat& magnitude, const GpuMat& angle, GpuMat& x, GpuMat& y, bool angleInDegrees, const Stream& stream)
|
|
|
|
{
|
|
|
|
::polarToCart_caller(magnitude, angle, x, y, angleInDegrees, StreamAccessor::getStream(stream));
|
2010-10-13 20:52:39 +08:00
|
|
|
}
|
|
|
|
|
2010-10-18 19:12:14 +08:00
|
|
|
#endif /* !defined (HAVE_CUDA) */
|