1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

increase epsilons in some tests:

* MulSpectrums
* StereoConstantSpaceBP
* BruteForceNonLocalMeans
This commit is contained in:
Vladislav Vinogradov
2015-11-27 16:46:20 +03:00
parent 2afb02fcb4
commit 2b26094cf5
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -163,7 +163,7 @@ CUDA_TEST_P(StereoConstantSpaceBP, Regression)
cv::Mat h_disp(disp);
h_disp.convertTo(h_disp, disp_gold.depth());
EXPECT_MAT_NEAR(disp_gold, h_disp, 1.0);
EXPECT_MAT_SIMILAR(disp_gold, h_disp, 1e-4);
}
INSTANTIATE_TEST_CASE_P(CUDA_Stereo, StereoConstantSpaceBP, ALL_DEVICES);