mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 03:30:34 +08:00
Merge pull request #18929 from alalek:gapi_test_eliminate_rand
This commit is contained in:
commit
3c9d03c36f
@ -176,7 +176,7 @@ private:
|
||||
int randInRange(const int start, const int end)
|
||||
{
|
||||
GAPI_Assert(start <= end);
|
||||
return start + std::rand() % (end - start + 1);
|
||||
return theRNG().uniform(start, end);
|
||||
}
|
||||
|
||||
cv::Rect generateBox(const cv::Size& in_sz)
|
||||
@ -211,7 +211,7 @@ private:
|
||||
SSDitem it;
|
||||
it.image_id = static_cast<float>(i);
|
||||
it.label = static_cast<float>(randInRange(0, 9));
|
||||
it.confidence = static_cast<float>(std::rand()) / RAND_MAX;
|
||||
it.confidence = theRNG().uniform(0.f, 1.f);
|
||||
auto box = generateBox(in_sz);
|
||||
it.rc_left = normalize(box.x, in_sz.width);
|
||||
it.rc_right = normalize(box.x + box.width, in_sz.width);
|
||||
@ -245,9 +245,10 @@ public:
|
||||
auto data = mat.ptr<float>();
|
||||
|
||||
const size_t range = std::accumulate(dims.begin(), dims.end(), 1, std::multiplies<int>());
|
||||
cv::RNG& rng = theRNG();
|
||||
for (size_t i = 0; i < range; ++i)
|
||||
{
|
||||
data[i] = static_cast<float>(std::rand()) / RAND_MAX;
|
||||
data[i] = rng.uniform(0.f, 1.f);
|
||||
}
|
||||
return mat;
|
||||
}
|
||||
|
@ -116,11 +116,11 @@ public:
|
||||
// we have some specific data hidden under RMat,
|
||||
// test that we can obtain it via RMat.as<T>() method
|
||||
TEST(RMat, UsageInBackend) {
|
||||
int i = std::rand();
|
||||
int i = 123456;
|
||||
auto rmat = cv::make_rmat<RMatAdapterForBackend>(i);
|
||||
|
||||
auto adapter = rmat.get<RMatAdapterForBackend>();
|
||||
EXPECT_NE(nullptr, adapter);
|
||||
ASSERT_NE(nullptr, adapter);
|
||||
EXPECT_EQ(i, adapter->deviceSpecificData());
|
||||
}
|
||||
} // namespace opencv_test
|
||||
|
@ -34,4 +34,7 @@ static inline void countNonZero_is_forbidden_in_tests_use_norm_instead() {}
|
||||
}
|
||||
#define countNonZero() countNonZero_is_forbidden_in_tests_use_norm_instead()
|
||||
|
||||
#undef RAND_MAX
|
||||
#define RAND_MAX RAND_MAX_is_banned_in_tests__use_cv_theRNG_instead
|
||||
|
||||
#endif // __OPENCV_GAPI_TEST_PRECOMP_HPP__
|
||||
|
Loading…
Reference in New Issue
Block a user