Home
last modified time | relevance | path

Searched refs:depth_start (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/ts/include/opencv2/ts/
Dcuda_test.hpp253 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/
Dcuda_test.cpp367 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()