Merge pull request #24417 from asmorkalov:as/resize_interarea_perf

Ensure interarea algorithm usage in resize perfomance test
This commit is contained in:
Alexander Smorkalov 2023-10-17 11:27:21 +03:00 committed by GitHub
commit 7757759205
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -202,9 +202,9 @@ typedef TestBaseWithParam<tuple<MatType, Size, double> > MatInfo_Size_Scale_Area
PERF_TEST_P(MatInfo_Size_Scale_Area, ResizeArea,
testing::Combine(
testing::Values(CV_8UC1, CV_8UC4),
testing::Values(szVGA, szqHD, sz720p),
testing::Values(2.4, 3.4, 1.3)
testing::Values(CV_8UC1, CV_8UC3, CV_8UC4),
testing::Values(szVGA, szqHD, sz720p, sz1080p, sz2160p),
testing::Values(0.1, 0.25, 0.81)
)
)
{