Searched refs:depth_start (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/ts/include/opencv2/ts/ |
D | cuda_test.hpp | 253 CV_EXPORTS std::vector<MatType> types(int depth_start, int depth_end, int cn_start, int cn_end); 259 …#define TYPES(depth_start, depth_end, cn_start, cn_end) testing::ValuesIn(types(depth_start, depth… argument
|
/external/opencv3/modules/ts/src/ |
D | cuda_test.cpp | 367 vector<MatType> types(int depth_start, int depth_end, int cn_start, int cn_end) in types() argument 371 v.reserve((depth_end - depth_start + 1) * (cn_end - cn_start + 1)); in types() 373 for (int depth = depth_start; depth <= depth_end; ++depth) in types()
|