Merge pull request #3849 from opencv:rv/fastcv_bilat_test_baboon

FastCV bilateral recursive: test files updated
pull/3851/head
Alexander Smorkalov 5 months ago committed by GitHub
commit 1b841632ef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 11
      modules/fastcv/test/test_smooth.cpp

@ -39,7 +39,14 @@ TEST_P(BilateralRecursiveTest, accuracy)
} }
INSTANTIATE_TEST_CASE_P(FastCV_Extension, BilateralRecursiveTest, INSTANTIATE_TEST_CASE_P(FastCV_Extension, BilateralRecursiveTest,
::testing::Combine(::testing::Values(0.01f, 0.03f, 0.1f, 1.f, 5.f), ::testing::Values(
::testing::Values(0.01f, 0.05f, 0.1f, 1.f, 5.f))); 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, :: }} // namespaces opencv_test, ::

Loading…
Cancel
Save