HomeSort by relevance Sort by last modified time
    Searched refs:theRNG (Results 1 - 25 of 44) sorted by null

1 2

  /external/opencv3/modules/imgproc/perf/
perf_threshold.cpp 30 double thresh = theRNG().uniform(1, 254);
31 double maxval = theRNG().uniform(1, 254);
50 double maxval = theRNG().uniform(1, 254);
80 double maxValue = theRNG().uniform(1, 254);
  /external/opencv3/samples/cpp/
ffilldemo.cpp 47 int b = (unsigned)theRNG() & 255;
48 int g = (unsigned)theRNG() & 255;
49 int r = (unsigned)theRNG() & 255;
watershed.cpp 105 int b = theRNG().uniform(0, 255);
106 int g = theRNG().uniform(0, 255);
107 int r = theRNG().uniform(0, 255);
convexhull.cpp 19 RNG& rng = theRNG();
minarea.cpp 25 RNG& rng = theRNG();
kalman.cpp 85 if(theRNG().uniform(0,4) != 0)
  /external/opencv3/modules/imgproc/test/
test_grabcut.cpp 162 theRNG().state = 12378213;
164 theRNG().state = 12378213;
166 theRNG().state = 12378213;
  /external/opencv3/samples/cpp/tutorial_code/ImgTrans/
imageSegmentation.cpp 139 int b = theRNG().uniform(0, 255);
140 int g = theRNG().uniform(0, 255);
141 int r = theRNG().uniform(0, 255);
  /external/opencv3/modules/calib3d/test/
test_affine3d_estimator.cpp 74 float rngIn(float from, float to) { return from + (to-from) * (float)theRNG(); }
126 RNG& rng = theRNG();
test_solvepnp_ransac.cpp 287 theRNG().state = 20121010;
298 cv::theRNG().state = 20121010;
305 theRNG().state = 20121010;
test_reproject_image_to_3d.cpp 117 bool handleMissingValues = (unsigned)theRNG() % 2 == 0;
test_chessboardgenerator.cpp 81 RNG& rng = theRNG();
188 RNG& rng = theRNG();
253 RNG& rng = theRNG();
  /external/opencv3/modules/core/perf/
perf_math.cpp 32 RNG& rng = theRNG();
  /external/opencv3/modules/ml/test/
test_gbttest.cpp 60 cv::RNG& rng = cv::theRNG();
74 cv::theRNG().state = initSeed;
test_mltests2.cpp 208 RNG& rng = theRNG();
220 theRNG().state = initSeed;
  /external/opencv3/modules/core/test/
test_rand.cpp 98 RNG tested_rng = theRNG();
318 theRNG().fill(a, RNG::UNIFORM, -DBL_MAX, DBL_MAX);
319 theRNG().fill(af, RNG::UNIFORM, -DBL_MAX, DBL_MAX);
test_dxt.cpp 843 RNG& rng = theRNG();
874 int type = theRNG().uniform(0, 2) ? CV_64F : CV_32F;
875 int m = theRNG().uniform(1, 10);
876 int n = theRNG().uniform(1, 10);
  /external/opencv3/modules/ts/include/opencv2/
ts.hpp 530 DefaultRngAuto() : old_state(cv::theRNG().state) { cv::theRNG().state = (uint64)-1; }
531 ~DefaultRngAuto() { cv::theRNG().state = old_state; }
  /external/opencv3/modules/videoio/test/
test_video_pos.cpp 131 int idx = theRNG().uniform(0, n_frames);
  /external/opencv3/modules/features2d/src/
draw.cpp 110 RNG& rng=theRNG();
172 RNG& rng = theRNG();
  /external/opencv3/modules/viz/test/
tests_simple.cpp 68 theRNG().fill(colors, RNG::UNIFORM, 0, 255);
147 theRNG().fill(mesh.colors, RNG::UNIFORM, 0, 255);
164 RNG& rng = theRNG();
  /external/opencv3/modules/core/src/
rand.cpp 732 cv::RNG& cv::theRNG()
739 theRNG().fill(dst, RNG::UNIFORM, low, high);
744 theRNG().fill(dst, RNG::NORMAL, mean, stddev);
812 RNG& rng = _rng ? *_rng : theRNG();
824 cv::RNG& rng = _rng ? (cv::RNG&)*_rng : cv::theRNG();
832 cv::RNG& rng = _rng ? (cv::RNG&)*_rng : cv::theRNG();
kmeans.cpp 262 RNG& rng = theRNG();
  /external/opencv3/modules/features2d/perf/
perf_batchDistance.cpp 139 RNG& rng = theRNG();
  /external/opencv3/modules/viz/src/
precomp.hpp 229 RNG& rng = theRNG();

Completed in 3614 milliseconds

1 2