Fixed sanity checks in several performance tests

This commit is contained in:
Andrey Kamaev
2012-11-01 16:29:30 +04:00
parent b5ecb1d32d
commit e3be5f138a
5 changed files with 11 additions and 14 deletions

View File

@@ -43,7 +43,7 @@ PERF_TEST_P( TestWarpAffine, WarpAffine,
TEST_CYCLE() warpAffine( src, dst, warpMat, sz, interType, borderMode, Scalar::all(150) );
SANITY_CHECK(dst);
SANITY_CHECK(dst, 1);
}
@@ -78,7 +78,7 @@ PERF_TEST_P( TestWarpPerspective, WarpPerspective,
TEST_CYCLE() warpPerspective( src, dst, warpMat, sz, interType, borderMode, Scalar::all(150) );
SANITY_CHECK(dst);
SANITY_CHECK(dst, 1);
}
PERF_TEST_P( TestWarpPerspectiveNear_t, WarpPerspectiveNear,