1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Ensure interarea algorithm usage in resize perfomance test.

This commit is contained in:
Alexander Smorkalov
2023-10-17 09:43:15 +03:00
parent 2f63c58380
commit 14b21f7271
+3 -3
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)
)
)
{