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

This commit is contained in:
Vadim Pisarevsky 2010-11-20 12:22:24 +00:00
parent 4ca701d888
commit 209ea825d9
2 changed files with 3 additions and 3 deletions

View File

@ -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);
return depth <= CV_8S ? 2 : depth <= CV_32S ? 32 :
depth == CV_32F ? 1e-5 : 1e-10;
depth == CV_32F ? 1e-4 : 1e-10;
}

View File

@ -48,8 +48,8 @@ const char* blacklist[] =
"calibrate-camera-artificial", //ticket 472
"inpaint", //ticket 570
"warp-resize", //ticket 429
"filter-generic", //ticket 690
"mhi-global", //ticket 457
//"filter-generic", //ticket 690
//"mhi-global", //ticket 457
0
};