changed eps in Retina_OCL test
This commit is contained in:
parent
9bf2516eb1
commit
8834d5e57b
@ -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),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user