Commit 8834d5e5 authored by Ilya Lavrenov's avatar Ilya Lavrenov

changed eps in Retina_OCL test

parent 9bf2516e
...@@ -130,13 +130,15 @@ TEST_P(Retina_OCL, Accuracy) ...@@ -130,13 +130,15 @@ TEST_P(Retina_OCL, Accuracy)
ocl_retina->getParvo(ocl_parvo); ocl_retina->getParvo(ocl_parvo);
ocl_retina->getMagno(ocl_magno); ocl_retina->getMagno(ocl_magno);
EXPECT_LE(checkNear(gold_parvo, (Mat)ocl_parvo), 1.0); int eps = colorMode ? 2 : 1;
EXPECT_LE(checkNear(gold_magno, (Mat)ocl_magno), 1.0);
EXPECT_LE(checkNear(gold_parvo, (Mat)ocl_parvo), eps);
EXPECT_LE(checkNear(gold_magno, (Mat)ocl_magno), eps);
} }
} }
INSTANTIATE_TEST_CASE_P(Contrib, Retina_OCL, testing::Combine( INSTANTIATE_TEST_CASE_P(Contrib, Retina_OCL, testing::Combine(
testing::Values(false, true), testing::Bool(),
testing::Values((int)cv::bioinspired::RETINA_COLOR_BAYER), testing::Values((int)cv::bioinspired::RETINA_COLOR_BAYER),
testing::Values(false/*,true*/), testing::Values(false/*,true*/),
testing::Values(1.0, 0.5), testing::Values(1.0, 0.5),
......
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