Skip to content

Commit 1b84163

Browse files
authored
Merge pull request #3849 from opencv:rv/fastcv_bilat_test_baboon
FastCV bilateral recursive: test files updated
2 parents d855320 + 8dc7695 commit 1b84163

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

modules/fastcv/test/test_smooth.cpp

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,14 @@ TEST_P(BilateralRecursiveTest, accuracy)
3939
}
4040

4141
INSTANTIATE_TEST_CASE_P(FastCV_Extension, BilateralRecursiveTest,
42-
::testing::Combine(::testing::Values(0.01f, 0.03f, 0.1f, 1.f, 5.f),
43-
::testing::Values(0.01f, 0.05f, 0.1f, 1.f, 5.f)));
42+
::testing::Values(
43+
BilateralTestParams {0.01f, 1.00f},
44+
BilateralTestParams {0.10f, 0.01f},
45+
BilateralTestParams {1.00f, 0.01f},
46+
BilateralTestParams {1.00f, 1.00f},
47+
BilateralTestParams {5.00f, 0.01f},
48+
BilateralTestParams {5.00f, 0.10f},
49+
BilateralTestParams {5.00f, 5.00f}
50+
));
4451

4552
}} // namespaces opencv_test, ::

0 commit comments

Comments
 (0)