From 8dc76950e689694cdca86a6d7d1b0b08cc23f40a Mon Sep 17 00:00:00 2001 From: Rostislav Vasilikhin Date: Tue, 17 Dec 2024 01:52:10 +0100 Subject: [PATCH] FastCV bilateral recursive: test files updated --- modules/fastcv/test/test_smooth.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/modules/fastcv/test/test_smooth.cpp b/modules/fastcv/test/test_smooth.cpp index 0b73baa5cd5..47c85152ebf 100644 --- a/modules/fastcv/test/test_smooth.cpp +++ b/modules/fastcv/test/test_smooth.cpp @@ -39,7 +39,14 @@ TEST_P(BilateralRecursiveTest, accuracy) } INSTANTIATE_TEST_CASE_P(FastCV_Extension, BilateralRecursiveTest, - ::testing::Combine(::testing::Values(0.01f, 0.03f, 0.1f, 1.f, 5.f), - ::testing::Values(0.01f, 0.05f, 0.1f, 1.f, 5.f))); + ::testing::Values( + BilateralTestParams {0.01f, 1.00f}, + BilateralTestParams {0.10f, 0.01f}, + BilateralTestParams {1.00f, 0.01f}, + BilateralTestParams {1.00f, 1.00f}, + BilateralTestParams {5.00f, 0.01f}, + BilateralTestParams {5.00f, 0.10f}, + BilateralTestParams {5.00f, 5.00f} + )); }} // namespaces opencv_test, ::