Commit c1172b83 authored by vbystricky's avatar vbystricky

Change epsilon value to 0.01

parent f1541b52
...@@ -90,7 +90,7 @@ OCL_PERF_TEST_P(FarnebackOpticalFlowFixture, FarnebackOpticalFlow, ...@@ -90,7 +90,7 @@ OCL_PERF_TEST_P(FarnebackOpticalFlowFixture, FarnebackOpticalFlow,
const double pyrScale = 0.5; const double pyrScale = 0.5;
int flags = get<1>(params); int flags = get<1>(params);
const bool useInitFlow = get<2>(params); const bool useInitFlow = get<2>(params);
const double eps = 1.5; const double eps = 0.01;
UMat uFrame0; frame0.copyTo(uFrame0); UMat uFrame0; frame0.copyTo(uFrame0);
UMat uFrame1; frame1.copyTo(uFrame1); UMat uFrame1; frame1.copyTo(uFrame1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment