removed columnSum function (it is a duplicate for reduce)

This commit is contained in:
Vladislav Vinogradov
2013-04-09 12:10:56 +04:00
parent 229ca0914a
commit c2402053b9
6 changed files with 1 additions and 134 deletions

View File

@@ -631,32 +631,6 @@ PERF_TEST_P(Sz_ClipLimit, ImgProc_CLAHE,
}
}
//////////////////////////////////////////////////////////////////////
// ColumnSum
PERF_TEST_P(Sz, ImgProc_ColumnSum,
GPU_TYPICAL_MAT_SIZES)
{
const cv::Size size = GetParam();
cv::Mat src(size, CV_32FC1);
declare.in(src, WARMUP_RNG);
if (PERF_RUN_GPU())
{
const cv::gpu::GpuMat d_src(src);
cv::gpu::GpuMat dst;
TEST_CYCLE() cv::gpu::columnSum(d_src, dst);
GPU_SANITY_CHECK(dst);
}
else
{
FAIL_NO_CPU();
}
}
//////////////////////////////////////////////////////////////////////
// Canny