1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Set sanity threshold for TVL1 optical flow to 0.02

This commit is contained in:
Andrey Kamaev
2012-12-14 17:40:51 +04:00
parent f5cd20d80b
commit 1284121d89
+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);
SANITY_CHECK(flow, 0.02);
}