Searched defs:ensureSizeIsEnough (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/
H A Dcuda.inl.hpp369 void ensureSizeIsEnough(Size size, int type, OutputArray arr) function in namespace:cv::cuda
371 ensureSizeIsEnough(size.height, size.width, type, arr);
/external/opencv3/modules/features2d/src/
H A Dmatchers.cpp55 static void ensureSizeIsEnough(int rows, int cols, int type, UMat &m) function in namespace:cv
72 ensureSizeIsEnough(1, query_rows, CV_32S, trainIdx);
73 ensureSizeIsEnough(1, query_rows, CV_32F, distance);
170 ensureSizeIsEnough(1, query_rows, CV_32SC2, trainIdx);
171 ensureSizeIsEnough(1, query_rows, CV_32FC2, distance);
282 ensureSizeIsEnough(1, query_rows, CV_32SC1, nMatches);
286 ensureSizeIsEnough(query_rows, std::max((train_rows / 100), 10), CV_32SC1, trainIdx);
287 ensureSizeIsEnough(query_rows, std::max((train_rows / 100), 10), CV_32FC1, distance);

Completed in 95 milliseconds