From b5bf756ca0339f3f09d0f28b45f68b58c59471cc Mon Sep 17 00:00:00 2001 From: cudawarped <12133430+cudawarped@users.noreply.github.com> Date: Tue, 10 Jan 2023 08:40:08 +0200 Subject: [PATCH] core: define cuda test size with row/col of 1 --- modules/ts/include/opencv2/ts/cuda_test.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ts/include/opencv2/ts/cuda_test.hpp b/modules/ts/include/opencv2/ts/cuda_test.hpp index f1851c5f8f..87b217fc13 100644 --- a/modules/ts/include/opencv2/ts/cuda_test.hpp +++ b/modules/ts/include/opencv2/ts/cuda_test.hpp @@ -212,6 +212,8 @@ namespace cvtest #define DIFFERENT_SIZES testing::Values(cv::Size(128, 128), cv::Size(113, 113)) + #define DIFFERENT_SIZES_EXTRA testing::Values(cv::Size(13, 1), cv::Size(1, 13), cv::Size(128, 128), cv::Size(113, 113)) + // Depth using perf::MatDepth;