From 4065778255a36a1edd7c881cec0096d73e2d8ba0 Mon Sep 17 00:00:00 2001 From: Fangjun KUANG Date: Mon, 10 Apr 2017 09:32:50 +0200 Subject: [PATCH] fix typos. --- modules/core/include/opencv2/core.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/core/include/opencv2/core.hpp b/modules/core/include/opencv2/core.hpp index 5d18823d58..b6cc6bc7c4 100644 --- a/modules/core/include/opencv2/core.hpp +++ b/modules/core/include/opencv2/core.hpp @@ -2762,7 +2762,7 @@ public: double a1 = rng.uniform((double)0, (double)1); // produces float from [0, 1) - double b = rng.uniform(0.f, 1.f); + float b = rng.uniform(0.f, 1.f); // produces double from [0, 1) double c = rng.uniform(0., 1.); @@ -2778,8 +2778,8 @@ public: want a floating-point random number, but the range boundaries are integer numbers, either put dots in the end, if they are constants, or use explicit type cast operators, as in the a1 initialization above. - @param a lower inclusive boundary of the returned random numbers. - @param b upper non-inclusive boundary of the returned random numbers. + @param a lower inclusive boundary of the returned random number. + @param b upper non-inclusive boundary of the returned random number. */ int uniform(int a, int b); /** @overload */ -- GitLab