2010-05-12 01:44:00 +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 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*/
|
|
|
|
|
|
|
|
#include "precomp.hpp"
|
2013-12-05 23:43:50 +08:00
|
|
|
#include "opencl_kernels.hpp"
|
|
|
|
|
2013-07-10 15:25:36 +08:00
|
|
|
#if defined (HAVE_IPP) && (IPP_VERSION_MAJOR >= 7)
|
2014-04-03 17:18:28 +08:00
|
|
|
static IppStatus sts = ippInit();
|
2013-07-10 15:25:36 +08:00
|
|
|
#endif
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
namespace cv
|
|
|
|
{
|
|
|
|
|
|
|
|
template<typename T, typename ST, typename QT>
|
2011-04-18 23:14:32 +08:00
|
|
|
void integral_( const T* src, size_t _srcstep, ST* sum, size_t _sumstep,
|
|
|
|
QT* sqsum, size_t _sqsumstep, ST* tilted, size_t _tiltedstep,
|
2011-04-17 21:14:45 +08:00
|
|
|
Size size, int cn )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
int x, y, k;
|
|
|
|
|
2011-04-18 23:14:32 +08:00
|
|
|
int srcstep = (int)(_srcstep/sizeof(T));
|
|
|
|
int sumstep = (int)(_sumstep/sizeof(ST));
|
|
|
|
int tiltedstep = (int)(_tiltedstep/sizeof(ST));
|
|
|
|
int sqsumstep = (int)(_sqsumstep/sizeof(QT));
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
size.width *= cn;
|
|
|
|
|
|
|
|
memset( sum, 0, (size.width+cn)*sizeof(sum[0]));
|
|
|
|
sum += sumstep + cn;
|
|
|
|
|
|
|
|
if( sqsum )
|
|
|
|
{
|
|
|
|
memset( sqsum, 0, (size.width+cn)*sizeof(sqsum[0]));
|
|
|
|
sqsum += sqsumstep + cn;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( tilted )
|
|
|
|
{
|
|
|
|
memset( tilted, 0, (size.width+cn)*sizeof(tilted[0]));
|
|
|
|
tilted += tiltedstep + cn;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( sqsum == 0 && tilted == 0 )
|
|
|
|
{
|
|
|
|
for( y = 0; y < size.height; y++, src += srcstep - cn, sum += sumstep - cn )
|
|
|
|
{
|
|
|
|
for( k = 0; k < cn; k++, src++, sum++ )
|
|
|
|
{
|
|
|
|
ST s = sum[-cn] = 0;
|
|
|
|
for( x = 0; x < size.width; x += cn )
|
|
|
|
{
|
|
|
|
s += src[x];
|
|
|
|
sum[x] = sum[x - sumstep] + s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if( tilted == 0 )
|
|
|
|
{
|
|
|
|
for( y = 0; y < size.height; y++, src += srcstep - cn,
|
|
|
|
sum += sumstep - cn, sqsum += sqsumstep - cn )
|
|
|
|
{
|
|
|
|
for( k = 0; k < cn; k++, src++, sum++, sqsum++ )
|
|
|
|
{
|
|
|
|
ST s = sum[-cn] = 0;
|
|
|
|
QT sq = sqsum[-cn] = 0;
|
|
|
|
for( x = 0; x < size.width; x += cn )
|
|
|
|
{
|
|
|
|
T it = src[x];
|
|
|
|
s += it;
|
2011-04-17 21:14:45 +08:00
|
|
|
sq += (QT)it*it;
|
2010-05-12 01:44:00 +08:00
|
|
|
ST t = sum[x - sumstep] + s;
|
|
|
|
QT tq = sqsum[x - sqsumstep] + sq;
|
|
|
|
sum[x] = t;
|
|
|
|
sqsum[x] = tq;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AutoBuffer<ST> _buf(size.width+cn);
|
|
|
|
ST* buf = _buf;
|
|
|
|
ST s;
|
|
|
|
QT sq;
|
2011-04-17 21:14:45 +08:00
|
|
|
for( k = 0; k < cn; k++, src++, sum++, tilted++, buf++ )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
sum[-cn] = tilted[-cn] = 0;
|
|
|
|
|
|
|
|
for( x = 0, s = 0, sq = 0; x < size.width; x += cn )
|
|
|
|
{
|
|
|
|
T it = src[x];
|
|
|
|
buf[x] = tilted[x] = it;
|
|
|
|
s += it;
|
2011-04-17 21:14:45 +08:00
|
|
|
sq += (QT)it*it;
|
2010-05-12 01:44:00 +08:00
|
|
|
sum[x] = s;
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
sqsum[x] = sq;
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( size.width == cn )
|
|
|
|
buf[cn] = 0;
|
2012-06-15 21:04:17 +08:00
|
|
|
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
{
|
|
|
|
sqsum[-cn] = 0;
|
|
|
|
sqsum++;
|
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for( y = 1; y < size.height; y++ )
|
|
|
|
{
|
|
|
|
src += srcstep - cn;
|
|
|
|
sum += sumstep - cn;
|
|
|
|
tilted += tiltedstep - cn;
|
|
|
|
buf += -cn;
|
2012-06-15 21:04:17 +08:00
|
|
|
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
sqsum += sqsumstep - cn;
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2011-04-17 21:14:45 +08:00
|
|
|
for( k = 0; k < cn; k++, src++, sum++, tilted++, buf++ )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
|
|
|
T it = src[0];
|
|
|
|
ST t0 = s = it;
|
2011-04-17 21:14:45 +08:00
|
|
|
QT tq0 = sq = (QT)it*it;
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
sum[-cn] = 0;
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
sqsum[-cn] = 0;
|
2010-05-12 01:44:00 +08:00
|
|
|
tilted[-cn] = tilted[-tiltedstep];
|
|
|
|
|
|
|
|
sum[0] = sum[-sumstep] + t0;
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
sqsum[0] = sqsum[-sqsumstep] + tq0;
|
2010-05-12 01:44:00 +08:00
|
|
|
tilted[0] = tilted[-tiltedstep] + t0 + buf[cn];
|
|
|
|
|
|
|
|
for( x = cn; x < size.width - cn; x += cn )
|
|
|
|
{
|
|
|
|
ST t1 = buf[x];
|
|
|
|
buf[x - cn] = t1 + t0;
|
|
|
|
t0 = it = src[x];
|
2011-04-17 21:14:45 +08:00
|
|
|
tq0 = (QT)it*it;
|
2010-05-12 01:44:00 +08:00
|
|
|
s += t0;
|
|
|
|
sq += tq0;
|
|
|
|
sum[x] = sum[x - sumstep] + s;
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
sqsum[x] = sqsum[x - sqsumstep] + sq;
|
2010-05-12 01:44:00 +08:00
|
|
|
t1 += buf[x + cn] + t0 + tilted[x - tiltedstep - cn];
|
|
|
|
tilted[x] = t1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( size.width > cn )
|
|
|
|
{
|
|
|
|
ST t1 = buf[x];
|
|
|
|
buf[x - cn] = t1 + t0;
|
|
|
|
t0 = it = src[x];
|
2011-04-17 21:14:45 +08:00
|
|
|
tq0 = (QT)it*it;
|
2010-05-12 01:44:00 +08:00
|
|
|
s += t0;
|
|
|
|
sq += tq0;
|
|
|
|
sum[x] = sum[x - sumstep] + s;
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
sqsum[x] = sqsum[x - sqsumstep] + sq;
|
2010-05-12 01:44:00 +08:00
|
|
|
tilted[x] = t0 + t1 + tilted[x - tiltedstep - cn];
|
|
|
|
buf[x] = t0;
|
|
|
|
}
|
2012-06-15 21:04:17 +08:00
|
|
|
|
2011-04-17 21:14:45 +08:00
|
|
|
if( sqsum )
|
|
|
|
sqsum++;
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-15 21:04:17 +08:00
|
|
|
|
2011-04-17 21:14:45 +08:00
|
|
|
#define DEF_INTEGRAL_FUNC(suffix, T, ST, QT) \
|
2012-06-15 21:04:17 +08:00
|
|
|
static void integral_##suffix( T* src, size_t srcstep, ST* sum, size_t sumstep, QT* sqsum, size_t sqsumstep, \
|
|
|
|
ST* tilted, size_t tiltedstep, Size size, int cn ) \
|
2011-04-17 21:14:45 +08:00
|
|
|
{ integral_(src, srcstep, sum, sumstep, sqsum, sqsumstep, tilted, tiltedstep, size, cn); }
|
|
|
|
|
|
|
|
DEF_INTEGRAL_FUNC(8u32s, uchar, int, double)
|
2013-12-05 23:43:50 +08:00
|
|
|
DEF_INTEGRAL_FUNC(8u32f64f, uchar, float, double)
|
|
|
|
DEF_INTEGRAL_FUNC(8u64f64f, uchar, double, double)
|
2013-12-12 06:35:51 +08:00
|
|
|
DEF_INTEGRAL_FUNC(16u64f64f, ushort, double, double)
|
|
|
|
DEF_INTEGRAL_FUNC(16s64f64f, short, double, double)
|
2013-12-05 23:43:50 +08:00
|
|
|
DEF_INTEGRAL_FUNC(32f32f64f, float, float, double)
|
|
|
|
DEF_INTEGRAL_FUNC(32f64f64f, float, double, double)
|
|
|
|
DEF_INTEGRAL_FUNC(64f64f64f, double, double, double)
|
|
|
|
|
|
|
|
DEF_INTEGRAL_FUNC(8u32s32f, uchar, int, float)
|
|
|
|
DEF_INTEGRAL_FUNC(8u32f32f, uchar, float, float)
|
|
|
|
DEF_INTEGRAL_FUNC(32f32f32f, float, float, float)
|
2012-06-15 21:04:17 +08:00
|
|
|
|
2011-04-17 21:14:45 +08:00
|
|
|
typedef void (*IntegralFunc)(const uchar* src, size_t srcstep, uchar* sum, size_t sumstep,
|
|
|
|
uchar* sqsum, size_t sqsumstep, uchar* tilted, size_t tstep,
|
|
|
|
Size size, int cn );
|
|
|
|
|
2014-01-27 17:25:21 +08:00
|
|
|
#ifdef HAVE_OPENCL
|
|
|
|
|
2013-12-05 23:43:50 +08:00
|
|
|
static bool ocl_integral( InputArray _src, OutputArray _sum, int sdepth )
|
|
|
|
{
|
2014-06-19 18:39:49 +08:00
|
|
|
bool doubleSupport = ocl::Device::getDefault().doubleFPConfig() > 0;
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
if ( (_src.type() != CV_8UC1) ||
|
|
|
|
!(sdepth == CV_32S || sdepth == CV_32F || (doubleSupport && sdepth == CV_64F)))
|
2013-12-05 23:43:50 +08:00
|
|
|
return false;
|
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
static const int tileSize = 16;
|
|
|
|
|
|
|
|
String build_opt = format("-D sumT=%s -D LOCAL_SUM_SIZE=%d%s",
|
|
|
|
ocl::typeToStr(sdepth), tileSize,
|
|
|
|
doubleSupport ? " -D DOUBLE_SUPPORT" : "");
|
|
|
|
|
|
|
|
ocl::Kernel kcols("integral_sum_cols", ocl::imgproc::integral_sum_oclsrc, build_opt);
|
|
|
|
if (kcols.empty())
|
|
|
|
return false;
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
UMat src = _src.getUMat();
|
|
|
|
Size src_size = src.size();
|
|
|
|
Size bufsize(((src_size.height + tileSize - 1) / tileSize) * tileSize, ((src_size.width + tileSize - 1) / tileSize) * tileSize);
|
|
|
|
UMat buf(bufsize, sdepth);
|
|
|
|
kcols.args(ocl::KernelArg::ReadOnly(src), ocl::KernelArg::WriteOnlyNoSize(buf));
|
|
|
|
size_t gt = src.cols, lt = tileSize;
|
|
|
|
if (!kcols.run(1, >, <, false))
|
|
|
|
return false;
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
ocl::Kernel krows("integral_sum_rows", ocl::imgproc::integral_sum_oclsrc, build_opt);
|
|
|
|
if (krows.empty())
|
2013-12-05 23:43:50 +08:00
|
|
|
return false;
|
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
Size sumsize(src_size.width + 1, src_size.height + 1);
|
|
|
|
_sum.create(sumsize, sdepth);
|
|
|
|
UMat sum = _sum.getUMat();
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
krows.args(ocl::KernelArg::ReadOnlyNoSize(buf), ocl::KernelArg::WriteOnly(sum));
|
|
|
|
gt = src.rows;
|
|
|
|
return krows.run(1, >, <, false);
|
2013-12-05 23:43:50 +08:00
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2013-12-05 23:43:50 +08:00
|
|
|
static bool ocl_integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, int sdepth, int sqdepth )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2013-12-05 23:43:50 +08:00
|
|
|
bool doubleSupport = ocl::Device::getDefault().doubleFPConfig() > 0;
|
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
if ( _src.type() != CV_8UC1 || (!doubleSupport && (sdepth == CV_64F || sqdepth == CV_64F)) )
|
2013-12-05 23:43:50 +08:00
|
|
|
return false;
|
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
static const int tileSize = 16;
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
String build_opt = format("-D SUM_SQUARE -D sumT=%s -D sumSQT=%s -D LOCAL_SUM_SIZE=%d%s",
|
|
|
|
ocl::typeToStr(sdepth), ocl::typeToStr(sqdepth),
|
|
|
|
tileSize,
|
|
|
|
doubleSupport ? " -D DOUBLE_SUPPORT" : "");
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
ocl::Kernel kcols("integral_sum_cols", ocl::imgproc::integral_sum_oclsrc, build_opt);
|
|
|
|
if (kcols.empty())
|
|
|
|
return false;
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
UMat src = _src.getUMat();
|
|
|
|
Size src_size = src.size();
|
|
|
|
Size bufsize(((src_size.height + tileSize - 1) / tileSize) * tileSize, ((src_size.width + tileSize - 1) / tileSize) * tileSize);
|
|
|
|
UMat buf(bufsize, sdepth);
|
|
|
|
UMat buf_sq(bufsize, sqdepth);
|
|
|
|
kcols.args(ocl::KernelArg::ReadOnly(src), ocl::KernelArg::WriteOnlyNoSize(buf), ocl::KernelArg::WriteOnlyNoSize(buf_sq));
|
|
|
|
size_t gt = src.cols, lt = tileSize;
|
|
|
|
if (!kcols.run(1, >, <, false))
|
2013-12-05 23:43:50 +08:00
|
|
|
return false;
|
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
ocl::Kernel krows("integral_sum_rows", ocl::imgproc::integral_sum_oclsrc, build_opt);
|
|
|
|
if (krows.empty())
|
2013-12-05 23:43:50 +08:00
|
|
|
return false;
|
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
Size sumsize(src_size.width + 1, src_size.height + 1);
|
|
|
|
_sum.create(sumsize, sdepth);
|
|
|
|
UMat sum = _sum.getUMat();
|
|
|
|
_sqsum.create(sumsize, sqdepth);
|
|
|
|
UMat sum_sq = _sqsum.getUMat();
|
2013-12-05 23:43:50 +08:00
|
|
|
|
2014-06-19 18:39:49 +08:00
|
|
|
krows.args(ocl::KernelArg::ReadOnlyNoSize(buf), ocl::KernelArg::ReadOnlyNoSize(buf_sq), ocl::KernelArg::WriteOnly(sum), ocl::KernelArg::WriteOnlyNoSize(sum_sq));
|
|
|
|
gt = src.rows;
|
|
|
|
return krows.run(1, >, <, false);
|
2013-12-05 23:43:50 +08:00
|
|
|
}
|
|
|
|
|
2014-01-27 17:25:21 +08:00
|
|
|
#endif
|
|
|
|
|
2013-12-05 23:43:50 +08:00
|
|
|
}
|
2010-05-12 01:44:00 +08:00
|
|
|
|
2013-12-05 23:43:50 +08:00
|
|
|
|
|
|
|
void cv::integral( InputArray _src, OutputArray _sum, OutputArray _sqsum, OutputArray _tilted, int sdepth, int sqdepth )
|
|
|
|
{
|
|
|
|
int type = _src.type(), depth = CV_MAT_DEPTH(type), cn = CV_MAT_CN(type);
|
2010-05-12 01:44:00 +08:00
|
|
|
if( sdepth <= 0 )
|
|
|
|
sdepth = depth == CV_8U ? CV_32S : CV_64F;
|
2013-12-05 23:43:50 +08:00
|
|
|
if ( sqdepth <= 0 )
|
|
|
|
sqdepth = CV_64F;
|
|
|
|
sdepth = CV_MAT_DEPTH(sdepth), sqdepth = CV_MAT_DEPTH(sqdepth);
|
|
|
|
|
2014-01-27 17:25:21 +08:00
|
|
|
#ifdef HAVE_OPENCL
|
2013-12-05 23:43:50 +08:00
|
|
|
if (ocl::useOpenCL() && _sum.isUMat() && !_tilted.needed())
|
|
|
|
{
|
|
|
|
if (!_sqsum.needed())
|
|
|
|
{
|
2014-01-27 17:25:21 +08:00
|
|
|
CV_OCL_RUN(ocl::useOpenCL(), ocl_integral(_src, _sum, sdepth))
|
2013-12-05 23:43:50 +08:00
|
|
|
}
|
|
|
|
else if (_sqsum.isUMat())
|
2014-01-27 17:25:21 +08:00
|
|
|
CV_OCL_RUN(ocl::useOpenCL(), ocl_integral(_src, _sum, _sqsum, sdepth, sqdepth))
|
2013-12-05 23:43:50 +08:00
|
|
|
}
|
2014-01-27 17:25:21 +08:00
|
|
|
#endif
|
2013-07-10 15:25:36 +08:00
|
|
|
|
2013-12-20 20:38:31 +08:00
|
|
|
Size ssize = _src.size(), isize(ssize.width + 1, ssize.height + 1);
|
|
|
|
_sum.create( isize, CV_MAKETYPE(sdepth, cn) );
|
|
|
|
Mat src = _src.getMat(), sum =_sum.getMat(), sqsum, tilted;
|
|
|
|
|
|
|
|
if( _sqsum.needed() )
|
|
|
|
{
|
|
|
|
_sqsum.create( isize, CV_MAKETYPE(sqdepth, cn) );
|
|
|
|
sqsum = _sqsum.getMat();
|
|
|
|
};
|
|
|
|
|
2014-05-08 19:33:12 +08:00
|
|
|
#if defined(HAVE_IPP) && !defined(HAVE_IPP_ICV_ONLY) // Disabled on ICV due invalid results
|
2013-12-20 20:38:31 +08:00
|
|
|
if( ( depth == CV_8U ) && ( sdepth == CV_32F || sdepth == CV_32S ) && ( !_tilted.needed() ) && ( !_sqsum.needed() || sqdepth == CV_64F ) && ( cn == 1 ) )
|
2013-08-21 22:52:15 +08:00
|
|
|
{
|
2014-04-03 14:48:20 +08:00
|
|
|
IppStatus status = ippStsErr;
|
2013-12-20 20:38:31 +08:00
|
|
|
IppiSize srcRoiSize = ippiSize( src.cols, src.rows );
|
2013-08-21 22:52:15 +08:00
|
|
|
if( sdepth == CV_32F )
|
|
|
|
{
|
2013-12-20 20:38:31 +08:00
|
|
|
if( _sqsum.needed() )
|
2013-08-21 22:52:15 +08:00
|
|
|
{
|
2014-04-03 17:18:28 +08:00
|
|
|
status = ippiSqrIntegral_8u32f64f_C1R( (const Ipp8u*)src.data, (int)src.step, (Ipp32f*)sum.data, (int)sum.step, (Ipp64f*)sqsum.data, (int)sqsum.step, srcRoiSize, 0, 0 );
|
2013-12-20 20:38:31 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-03 17:18:28 +08:00
|
|
|
status = ippiIntegral_8u32f_C1R( (const Ipp8u*)src.data, (int)src.step, (Ipp32f*)sum.data, (int)sum.step, srcRoiSize, 0 );
|
2013-08-21 22:52:15 +08:00
|
|
|
}
|
|
|
|
}
|
2014-04-03 14:48:20 +08:00
|
|
|
else if( sdepth == CV_32S )
|
2013-08-21 22:52:15 +08:00
|
|
|
{
|
2013-12-20 20:38:31 +08:00
|
|
|
if( _sqsum.needed() )
|
2013-08-21 22:52:15 +08:00
|
|
|
{
|
2014-04-03 17:18:28 +08:00
|
|
|
status = ippiSqrIntegral_8u32s64f_C1R( (const Ipp8u*)src.data, (int)src.step, (Ipp32s*)sum.data, (int)sum.step, (Ipp64f*)sqsum.data, (int)sqsum.step, srcRoiSize, 0, 0 );
|
2013-12-20 20:38:31 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-04-03 17:18:28 +08:00
|
|
|
status = ippiIntegral_8u32s_C1R( (const Ipp8u*)src.data, (int)src.step, (Ipp32s*)sum.data, (int)sum.step, srcRoiSize, 0 );
|
2013-08-21 22:52:15 +08:00
|
|
|
}
|
|
|
|
}
|
2014-04-07 14:51:22 +08:00
|
|
|
if (0 <= status)
|
2014-03-21 19:27:56 +08:00
|
|
|
return;
|
2014-04-16 23:23:44 +08:00
|
|
|
setIppErrorStatus();
|
2013-08-21 22:52:15 +08:00
|
|
|
}
|
2013-07-10 15:25:36 +08:00
|
|
|
#endif
|
|
|
|
|
2013-12-05 23:43:50 +08:00
|
|
|
if( _tilted.needed() )
|
2011-04-17 21:14:45 +08:00
|
|
|
{
|
2013-12-05 23:43:50 +08:00
|
|
|
_tilted.create( isize, CV_MAKETYPE(sdepth, cn) );
|
|
|
|
tilted = _tilted.getMat();
|
2011-04-17 21:14:45 +08:00
|
|
|
}
|
2012-06-15 21:04:17 +08:00
|
|
|
|
2010-05-12 01:44:00 +08:00
|
|
|
IntegralFunc func = 0;
|
2013-12-05 23:43:50 +08:00
|
|
|
if( depth == CV_8U && sdepth == CV_32S && sqdepth == CV_64F )
|
2011-12-27 19:21:45 +08:00
|
|
|
func = (IntegralFunc)GET_OPTIMIZED(integral_8u32s);
|
2013-12-05 23:43:50 +08:00
|
|
|
else if( depth == CV_8U && sdepth == CV_32S && sqdepth == CV_32F )
|
|
|
|
func = (IntegralFunc)integral_8u32s32f;
|
|
|
|
else if( depth == CV_8U && sdepth == CV_32F && sqdepth == CV_64F )
|
|
|
|
func = (IntegralFunc)integral_8u32f64f;
|
|
|
|
else if( depth == CV_8U && sdepth == CV_32F && sqdepth == CV_32F )
|
|
|
|
func = (IntegralFunc)integral_8u32f32f;
|
|
|
|
else if( depth == CV_8U && sdepth == CV_64F && sqdepth == CV_64F )
|
|
|
|
func = (IntegralFunc)integral_8u64f64f;
|
2013-12-12 06:35:51 +08:00
|
|
|
else if( depth == CV_16U && sdepth == CV_64F && sqdepth == CV_64F )
|
|
|
|
func = (IntegralFunc)integral_16u64f64f;
|
|
|
|
else if( depth == CV_16S && sdepth == CV_64F && sqdepth == CV_64F )
|
|
|
|
func = (IntegralFunc)integral_16s64f64f;
|
2013-12-05 23:43:50 +08:00
|
|
|
else if( depth == CV_32F && sdepth == CV_32F && sqdepth == CV_64F )
|
|
|
|
func = (IntegralFunc)integral_32f32f64f;
|
|
|
|
else if( depth == CV_32F && sdepth == CV_32F && sqdepth == CV_32F )
|
|
|
|
func = (IntegralFunc)integral_32f32f32f;
|
|
|
|
else if( depth == CV_32F && sdepth == CV_64F && sqdepth == CV_64F )
|
|
|
|
func = (IntegralFunc)integral_32f64f64f;
|
|
|
|
else if( depth == CV_64F && sdepth == CV_64F && sqdepth == CV_64F )
|
|
|
|
func = (IntegralFunc)integral_64f64f64f;
|
2010-05-12 01:44:00 +08:00
|
|
|
else
|
|
|
|
CV_Error( CV_StsUnsupportedFormat, "" );
|
|
|
|
|
2011-04-17 21:14:45 +08:00
|
|
|
func( src.data, src.step, sum.data, sum.step, sqsum.data, sqsum.step,
|
|
|
|
tilted.data, tilted.step, src.size(), cn );
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
2012-06-15 21:04:17 +08:00
|
|
|
|
2011-06-06 22:51:27 +08:00
|
|
|
void cv::integral( InputArray src, OutputArray sum, int sdepth )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2011-06-08 14:55:04 +08:00
|
|
|
integral( src, sum, noArray(), noArray(), sdepth );
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
2013-12-05 23:43:50 +08:00
|
|
|
void cv::integral( InputArray src, OutputArray sum, OutputArray sqsum, int sdepth, int sqdepth )
|
2010-05-12 01:44:00 +08:00
|
|
|
{
|
2013-12-05 23:43:50 +08:00
|
|
|
integral( src, sum, sqsum, noArray(), sdepth, sqdepth );
|
2010-05-12 01:44:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
CV_IMPL void
|
|
|
|
cvIntegral( const CvArr* image, CvArr* sumImage,
|
|
|
|
CvArr* sumSqImage, CvArr* tiltedSumImage )
|
|
|
|
{
|
|
|
|
cv::Mat src = cv::cvarrToMat(image), sum = cv::cvarrToMat(sumImage), sum0 = sum;
|
|
|
|
cv::Mat sqsum0, sqsum, tilted0, tilted;
|
|
|
|
cv::Mat *psqsum = 0, *ptilted = 0;
|
|
|
|
|
|
|
|
if( sumSqImage )
|
|
|
|
{
|
|
|
|
sqsum0 = sqsum = cv::cvarrToMat(sumSqImage);
|
|
|
|
psqsum = &sqsum;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( tiltedSumImage )
|
|
|
|
{
|
|
|
|
tilted0 = tilted = cv::cvarrToMat(tiltedSumImage);
|
|
|
|
ptilted = &tilted;
|
|
|
|
}
|
2011-06-06 22:51:27 +08:00
|
|
|
cv::integral( src, sum, psqsum ? cv::_OutputArray(*psqsum) : cv::_OutputArray(),
|
|
|
|
ptilted ? cv::_OutputArray(*ptilted) : cv::_OutputArray(), sum.depth() );
|
2010-05-12 01:44:00 +08:00
|
|
|
|
|
|
|
CV_Assert( sum.data == sum0.data && sqsum.data == sqsum0.data && tilted.data == tilted0.data );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* End of file. */
|