1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

Set sanity threshold for TVL1 optical flow to 0.5

This commit is contained in:
Andrey Kamaev
2012-12-14 18:35:23 +04:00
parent 1284121d89
commit fe0b88d291
+1 -1
View File
@@ -29,5 +29,5 @@ PERF_TEST_P(ImagePair, OpticalFlowDual_TVL1, testing::Values(impair("cv/optflow/
tvl1(frame1, frame2, flow);
}
SANITY_CHECK(flow, 0.02);
SANITY_CHECK(flow, 0.5);
}