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); }