Commit 209ea825 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

raised error threshold in filter-generic test. re-enabled mhi-global & filter-generic tests

parent 4ca701d8
...@@ -601,7 +601,7 @@ double CV_FilterTest::get_success_error_level( int /*test_case_idx*/, int /*i*/, ...@@ -601,7 +601,7 @@ double CV_FilterTest::get_success_error_level( int /*test_case_idx*/, int /*i*/,
{ {
int depth = CV_MAT_DEPTH(test_mat[INPUT][0].type); int depth = CV_MAT_DEPTH(test_mat[INPUT][0].type);
return depth <= CV_8S ? 2 : depth <= CV_32S ? 32 : return depth <= CV_8S ? 2 : depth <= CV_32S ? 32 :
depth == CV_32F ? 1e-5 : 1e-10; depth == CV_32F ? 1e-4 : 1e-10;
} }
......
...@@ -48,8 +48,8 @@ const char* blacklist[] = ...@@ -48,8 +48,8 @@ const char* blacklist[] =
"calibrate-camera-artificial", //ticket 472 "calibrate-camera-artificial", //ticket 472
"inpaint", //ticket 570 "inpaint", //ticket 570
"warp-resize", //ticket 429 "warp-resize", //ticket 429
"filter-generic", //ticket 690 //"filter-generic", //ticket 690
"mhi-global", //ticket 457 //"mhi-global", //ticket 457
0 0
}; };
......
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