diff --git a/tests/cv/src/afeatures2d.cpp b/tests/cv/src/afeatures2d.cpp index 8af20ef61f..ebfe185fe6 100644 --- a/tests/cv/src/afeatures2d.cpp +++ b/tests/cv/src/afeatures2d.cpp @@ -979,7 +979,7 @@ CV_DescriptorExtractorTest > surfDescriptorTest( "descriptor-surf", 0 CV_DescriptorExtractorTest briefDescriptorTest( "descriptor-brief", 1, DescriptorExtractor::create("BRIEF"), 0.00527548f ); -CV_DescriptorExtractorTest > oppSiftDescriptorTest( "descriptor-opponent-sift", 0.03f, +CV_DescriptorExtractorTest > oppSiftDescriptorTest( "descriptor-opponent-sift", 0.045f, DescriptorExtractor::create("OpponentSIFT"), 8.06652f ); CV_DescriptorExtractorTest > oppurfDescriptorTest( "descriptor-opponent-surf", 0.18f, DescriptorExtractor::create("OpponentSURF"), 0.147372f ); diff --git a/tests/ml/src/amltests.cpp b/tests/ml/src/amltests.cpp index db21e5ae99..0cf5c74226 100644 --- a/tests/ml/src/amltests.cpp +++ b/tests/ml/src/amltests.cpp @@ -100,7 +100,7 @@ int CV_AMLTest::validate_test_results( int testCaseIdx ) resultNode["mean"] >> mean; resultNode["sigma"] >> sigma; float curErr = get_error( testCaseIdx, CV_TEST_ERROR ); - const int coeff = 3; + const int coeff = 4; ts->printf( CvTS::LOG, "Test case = %d; test error = %f; mean error = %f (diff=%f), %d*sigma = %f", testCaseIdx, curErr, mean, abs( curErr - mean), coeff, coeff*sigma ); if ( abs( curErr - mean) > coeff*sigma )