Increased time limits
authorAnna Kogan <anna.kogan@itseez.com>
Wed, 20 Feb 2013 12:59:17 +0000 (16:59 +0400)
committerAnna Kogan <anna.kogan@itseez.com>
Wed, 20 Feb 2013 13:34:00 +0000 (17:34 +0400)
modules/imgproc/perf/perf_matchTemplate.cpp
modules/video/perf/perf_tvl1optflow.cpp

index 0c727d5..a89435b 100644 (file)
@@ -33,7 +33,8 @@ PERF_TEST_P(ImgSize_TmplSize_Method, matchTemplateSmall,
     declare
         .in(img, WARMUP_RNG)
         .in(tmpl, WARMUP_RNG)
-        .out(result);
+        .out(result)
+        .time(30);
 
     TEST_CYCLE() matchTemplate(img, tmpl, result, method);
 
@@ -66,7 +67,8 @@ PERF_TEST_P(ImgSize_TmplSize_Method, matchTemplateBig,
     declare
         .in(img, WARMUP_RNG)
         .in(tmpl, WARMUP_RNG)
-        .out(result);
+        .out(result)
+        .time(30);
 
     TEST_CYCLE() matchTemplate(img, tmpl, result, method);
 
index ad90915..36f16d9 100644 (file)
@@ -13,7 +13,7 @@ pair<string, string> impair(const char* im1, const char* im2)
 
 PERF_TEST_P(ImagePair, OpticalFlowDual_TVL1, testing::Values(impair("cv/optflow/RubberWhale1.png", "cv/optflow/RubberWhale2.png")))
 {
-    declare.time(40);
+    declare.time(260);
 
     Mat frame1 = imread(getDataPath(GetParam().first), IMREAD_GRAYSCALE);
     Mat frame2 = imread(getDataPath(GetParam().second), IMREAD_GRAYSCALE);