added small resolutions for perf tests
authorKirill Kornyakov <no@email>
Fri, 21 Oct 2011 08:20:51 +0000 (08:20 +0000)
committerKirill Kornyakov <no@email>
Fri, 21 Oct 2011 08:20:51 +0000 (08:20 +0000)
modules/ts/include/opencv2/ts/ts_perf.hpp

index 7cddf14..edbf352 100644 (file)
@@ -37,12 +37,19 @@ const cv::Size szqHD = cv::Size(960, 540);
 const cv::Size sz720p = cv::Size(1280, 720);\r
 const cv::Size sz1080p = cv::Size(1920, 1080);\r
 \r
-const cv::Size szODD = cv::Size(127, 61);\r
 const cv::Size sz2K = cv::Size(2048, 2048);\r
 \r
+const cv::Size szODD = cv::Size(127, 61);\r
+\r
+const cv::Size szSmall24 = cv::Size(24, 24);\r
+const cv::Size szSmall32 = cv::Size(32, 32);\r
+const cv::Size szSmall64 = cv::Size(64, 64);\r
+const cv::Size szSmall128 = cv::Size(128, 128);\r
+\r
 #define SZ_ALL_VGA ::testing::Values(::perf::szQVGA, ::perf::szVGA, ::perf::szSVGA)\r
 #define SZ_ALL_GA  ::testing::Values(::perf::szQVGA, ::perf::szVGA, ::perf::szSVGA, ::perf::szXGA, ::perf::szSXGA)\r
 #define SZ_ALL_HD  ::testing::Values(::perf::sznHD, ::perf::szqHD, ::perf::sz720p, ::perf::sz1080p)\r
+#define SZ_ALL_SMALL ::testing::Values(::perf::szSmall24, ::perf::szSmall32, ::perf::szSmall64, ::perf::szSmall128)\r
 #define SZ_ALL  ::testing::Values(::perf::szQVGA, ::perf::szVGA, ::perf::szSVGA, ::perf::szXGA, ::perf::szSXGA, ::perf::sznHD, ::perf::szqHD, ::perf::sz720p, ::perf::sz1080p)\r
 #define SZ_TYPICAL  ::testing::Values(::perf::szVGA, ::perf::szqHD, ::perf::sz720p, ::perf::szODD)\r
 \r