HomeSort by relevance Sort by last modified time
    Searched refs:randomMat (Results 26 - 49 of 49) sorted by null

12

  /external/opencv3/modules/cudaarithm/test/
test_arithm.cpp 79 cv::Mat src1 = randomMat(size, type, -10.0, 10.0);
80 cv::Mat src2 = randomMat(size, type, -10.0, 10.0);
81 cv::Mat src3 = randomMat(size, type, -10.0, 10.0);
149 a = randomMat(size, CV_32FC2);
150 b = randomMat(size, CV_32FC2);
205 cv::Mat a = randomMat(cv::Size(cols, rows), CV_32FC2, 0.0, 10.0);
257 cv::Mat a = randomMat(cv::Size(cols, rows), CV_32FC1, 0.0, 10.0);
382 cv::Mat src = randomMat(size, CV_32FC1, 0.0, 100.0);
383 cv::Mat kernel = randomMat(cv::Size(ksize, ksize), CV_32FC1, 0.0, 1.0);
test_stream.cpp 69 cv::Mat m = randomMat(cv::Size(128, 128), CV_8UC1);
  /external/opencv3/modules/cudafilters/test/
test_filters.cpp 99 cv::Mat src = randomMat(size, type);
150 cv::Mat src = randomMat(size, type);
151 cv::Mat kernel = randomMat(cv::Size(ksize.width, ksize.height), CV_32FC1, 0.0, 1.0);
198 cv::Mat src = randomMat(size, type);
253 cv::Mat src = randomMat(size, type);
254 cv::Mat rowKernel = randomMat(Size(ksize.width, 1), CV_32FC1, 0.0, 1.0);
255 cv::Mat columnKernel = randomMat(Size(ksize.height, 1), CV_32FC1, 0.0, 1.0);
327 cv::Mat src = randomMat(size, type);
392 cv::Mat src = randomMat(size, type);
451 cv::Mat src = randomMat(size, type)
    [all...]
  /external/opencv3/modules/cudev/test/
test_color_cvt.cu 65 Mat bgrb = randomMat(size, CV_8UC3); \
73 Mat bgrf = randomMat(size, CV_32FC3, 0, 1); \
  /external/opencv3/modules/imgproc/test/ocl/
test_filters.cpp 245 Mat kernel = ksize==0 ? Mat() : randomMat(kernelSize, CV_8UC1, 0, 3);
267 Mat kernel = ksize==0 ? Mat() : randomMat(kernelSize, CV_8UC1, 0, 3);
344 Mat kernel = randomMat(kernelSize, CV_8UC1, 0, 3);
test_filter2d.cpp 78 Mat temp = randomMat(ksize, CV_MAKE_TYPE(((CV_64F == CV_MAT_DEPTH(type)) ? CV_64F : CV_32F), 1), -MAX_VALUE, MAX_VALUE);
test_imgproc.cpp 213 src = randomMat(wholeSize, type, -val, val, false);
  /external/opencv3/modules/cudaimgproc/test/
test_match_template.cpp 82 cv::Mat image = randomMat(size, CV_MAKETYPE(CV_8U, cn));
83 cv::Mat templ = randomMat(templ_size, CV_MAKETYPE(CV_8U, cn));
141 cv::Mat image = randomMat(size, CV_MAKETYPE(CV_32F, cn));
142 cv::Mat templ = randomMat(templ_size, CV_MAKETYPE(CV_32F, cn));
test_color.cpp 70 img = randomMat(size, CV_MAKE_TYPE(depth, 3), 0.0, depth == CV_32F ? 1.0 : 255.0);
    [all...]
  /external/opencv3/modules/core/test/
test_ippasync.cpp 40 matrix = randomMat(matrix_Size, type, -upValue, upValue);
124 matrix = randomMat(matrix_Size, type, 0, upValue);
test_umat.cpp 76 a = randomMat(size, type, -100, 100);
117 Mat b = randomMat(size, type, -100, 100);
289 a = randomMat(size,type, -100, 100);
378 a = randomMat(size, type, -100, 100);
392 a = randomMat(size, type, -100, 100);
410 a = randomMat(size, type, -100, 100);
453 a = randomMat(size, type, -100, 100);
454 b = randomMat(s, type, -100, 100);
501 a = randomMat(size, type, -100, 100);
517 new_diag = randomMat(Size(ua.rows, 1), type, -100, 100)
    [all...]
test_arithm.cpp     [all...]
  /external/opencv3/modules/cudastereo/test/
test_stereo.cpp 194 cv::Mat disp = randomMat(size, depth, 5.0, 30.0);
195 cv::Mat Q = randomMat(cv::Size(4, 4), CV_32FC1, 0.1, 1.0);
  /external/opencv3/modules/cudawarping/test/
test_resize.cpp 144 cv::Mat src = randomMat(size, type);
190 cv::Mat src = randomMat(size, type);
test_warp_affine.cpp 84 cv::Mat src = randomMat(randomSize(200, 400), CV_8UC1);
209 cv::Mat src = randomMat(size, type);
test_warp_perspective.cpp 89 cv::Mat src = randomMat(randomSize(200, 400), CV_8UC1);
212 cv::Mat src = randomMat(size, type);
test_remap.cpp 160 cv::Mat src = randomMat(size, type);
  /external/opencv3/modules/core/test/ocl/
test_dft.cpp 102 src = randomMat(dft_size, CV_MAKE_TYPE(depth, cn), 0.0, 100.0);
  /external/opencv3/modules/stitching/test/ocl/
test_warpers.cpp 62 src = randomMat(size, CV_32FC1, -500, 500);
  /external/opencv3/modules/ts/include/opencv2/ts/
ocl_test.hpp 247 Mat randomMat(Size size, int type, double minVal, double maxVal, bool useRoi = false)
250 return cvtest::randomMat(dataRng, size, type, minVal, maxVal, useRoi);
272 whole = randomMat(wholeSize, type, minVal, maxVal, false);
cuda_test.hpp 64 CV_EXPORTS cv::Mat randomMat(cv::Size size, int type, double minVal = 0.0, double maxVal = 255.0);
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 92 CV_EXPORTS Mat randomMat(RNG& rng, Size size, int type, double minVal, double maxVal, bool useRoi);
93 CV_EXPORTS Mat randomMat(RNG& rng, const vector<int>& size, int type, double minVal, double maxVal, bool useRoi);
  /external/opencv3/modules/ts/src/
cuda_test.cpp 84 Mat randomMat(Size size, int type, double minVal, double maxVal)
86 return randomMat(TS::ptr()->get_rng(), size, type, minVal, maxVal, false);
ts_func.cpp 108 Mat randomMat(RNG& rng, Size size, int type, double minVal, double maxVal, bool useRoi)
125 Mat randomMat(RNG& rng, const vector<int>& size, int type, double minVal, double maxVal, bool useRoi)
    [all...]

Completed in 970 milliseconds

12