Fixed cv::pyrUp performance test

This commit is contained in:
Alexander Karsakov 2014-05-21 14:09:21 +04:00
parent ada2879faa
commit fa1ed5580d

View File

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