mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
Merge pull request #6332 from sovrasov:python_rng_seed
This commit is contained in:
commit
ff0d115800
@ -2170,6 +2170,14 @@ is much faster to use this function to retrieve the generator and then use RNG::
|
||||
*/
|
||||
CV_EXPORTS RNG& theRNG();
|
||||
|
||||
/** @brief Sets state of default random number generator.
|
||||
|
||||
The function sets state of default random number generator to custom value.
|
||||
@param seed new state for default random number generator
|
||||
@sa RNG, randu, randn
|
||||
*/
|
||||
CV_EXPORTS_W void setRNGSeed(int seed);
|
||||
|
||||
/** @brief Generates a single uniformly-distributed random number or an array of random numbers.
|
||||
|
||||
Non-template variant of the function fills the matrix dst with uniformly-distributed
|
||||
|
@ -734,6 +734,12 @@ cv::RNG& cv::theRNG()
|
||||
return getCoreTlsData().get()->rng;
|
||||
}
|
||||
|
||||
void cv::setRNGSeed(int seed)
|
||||
{
|
||||
theRNG() = RNG(static_cast<uint64>(seed));
|
||||
}
|
||||
|
||||
|
||||
void cv::randu(InputOutputArray dst, InputArray low, InputArray high)
|
||||
{
|
||||
theRNG().fill(dst, RNG::UNIFORM, low, high);
|
||||
|
@ -42,6 +42,7 @@ class NewOpenCVTests(unittest.TestCase):
|
||||
return self.image_cache[filename]
|
||||
|
||||
def setUp(self):
|
||||
cv2.setRNGSeed(10)
|
||||
self.image_cache = {}
|
||||
|
||||
def hashimg(self, im):
|
||||
|
Loading…
Reference in New Issue
Block a user