HomeSort by relevance Sort by last modified time
    Searched defs:CvRNG (Results 1 - 2 of 2) sorted by null

  /external/opencv/cxcore/include/
cxtypes.h 301 typedef uint64 CvRNG;
303 CV_INLINE CvRNG cvRNG( int64 seed CV_DEFAULT(-1))
305 CvRNG rng = seed ? (uint64)seed : (uint64)(int64)-1;
310 CV_INLINE unsigned cvRandInt( CvRNG* rng )
319 CV_INLINE double cvRandReal( CvRNG* rng )
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 203 typedef uint64 CvRNG;
213 @sa the C++ class RNG replaced CvRNG.
215 CV_INLINE CvRNG cvRNG( int64 seed CV_DEFAULT(-1))
217 CvRNG rng = seed ? (uint64)seed : (uint64)(int64)-1;
226 @param rng CvRNG state initialized by cvRNG.
228 CV_INLINE unsigned cvRandInt( CvRNG* rng )
240 @param rng RNG state initialized by cvRNG
242 CV_INLINE double cvRandReal( CvRNG* rng
    [all...]

Completed in 157 milliseconds