1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

test: use cv::theRNG instead of own generator

This commit is contained in:
Maksim Shabunin
2024-06-06 17:29:34 +03:00
parent bef5a87680
commit ef3303716e
3 changed files with 2 additions and 8 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ double Core_PowTest::get_success_error_level( int test_case_idx, int i, int j )
return power == cvRound(power) && power >= 0 ? 0 : 1;
else
{
return depth != CV_64F ? Base::get_success_error_level( test_case_idx, i, j ) : DBL_EPSILON*1024*1.1;
return depth != CV_64F ? Base::get_success_error_level( test_case_idx, i, j ) : DBL_EPSILON*1024*1.11;
}
}