From fa1ed5580d54675b815802c8ccfdefe96d3bfc00 Mon Sep 17 00:00:00 2001 From: Alexander Karsakov Date: Wed, 21 May 2014 14:09:21 +0400 Subject: [PATCH] Fixed cv::pyrUp performance test --- modules/imgproc/perf/opencl/perf_pyramid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/perf/opencl/perf_pyramid.cpp b/modules/imgproc/perf/opencl/perf_pyramid.cpp index 597584507f..8bbc3184fc 100644 --- a/modules/imgproc/perf/opencl/perf_pyramid.cpp +++ b/modules/imgproc/perf/opencl/perf_pyramid.cpp @@ -95,7 +95,7 @@ OCL_PERF_TEST_P(PyrUpFixture, PyrUp, UMat src(srcSize, type), dst(dstSize, type); declare.in(src, WARMUP_RNG).out(dst); - OCL_TEST_CYCLE() cv::pyrDown(src, dst); + OCL_TEST_CYCLE() cv::pyrUp(src, dst); SANITY_CHECK(dst, eps); }