org.opencv.core.Core.randu_0()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(7.6k)|赞(0)|评价(0)|浏览(139)

本文整理了Java中org.opencv.core.Core.randu_0()方法的一些代码示例,展示了Core.randu_0()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Core.randu_0()方法的具体详情如下:
包路径:org.opencv.core.Core
类名称:Core
方法名:randu_0

Core.randu_0介绍

暂无

代码示例

代码示例来源:origin: farkam135/GoIV

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: imistyrain/EasyPR4Android

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: kongqw/OpenCVForAndroid

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: tz28/Chinese-number-gestures-recognition

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: leadrien/opencv_native_androidstudio

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: nroduit/Weasis

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: SouvDc/face-detection

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: InnoFang/Android-Code-Demos

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: hschott/Camdroid

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: DuckDeck/AndroidDemo

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: ctodobom/OpenCV-3.1.0-Android

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: SOFTPOWER1991/OpenCVCheck

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: akshika47/OpencvAndroid

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: raulh82vlc/Image-Detection-Samples

  1. public static void randu(Mat dst, double low, double high)
  2. {
  3. randu_0(dst.nativeObj, low, high);
  4. return;
  5. }

代码示例来源:origin: ytai/IOIOPlotter

  1. /**
  2. * <p>Generates a single uniformly-distributed random number or an array of random
  3. * numbers.</p>
  4. *
  5. * <p>The template functions <code>randu</code> generate and return the next
  6. * uniformly-distributed random value of the specified type. <code>randu<int>()</code>
  7. * is an equivalent to <code>(int)theRNG();</code>, and so on. See "RNG"
  8. * description.</p>
  9. *
  10. * <p>The second non-template variant of the function fills the matrix
  11. * <code>dst</code> with uniformly-distributed random numbers from the specified
  12. * range:</p>
  13. *
  14. * <p><em>low _c <= dst(I)_c &lt high _c</em></p>
  15. *
  16. * @param dst output array of random numbers; the array must be pre-allocated.
  17. * @param low inclusive lower boundary of the generated random numbers.
  18. * @param high exclusive upper boundary of the generated random numbers.
  19. *
  20. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randu">org.opencv.core.Core.randu</a>
  21. * @see org.opencv.core.Core#randn
  22. */
  23. public static void randu(Mat dst, double low, double high)
  24. {
  25. randu_0(dst.nativeObj, low, high);
  26. return;
  27. }

代码示例来源:origin: com.sikulix/sikulixapi

  1. /**
  2. * <p>Generates a single uniformly-distributed random number or an array of random
  3. * numbers.</p>
  4. *
  5. * <p>The template functions <code>randu</code> generate and return the next
  6. * uniformly-distributed random value of the specified type. <code>randu<int>()</code>
  7. * is an equivalent to <code>(int)theRNG();</code>, and so on. See "RNG"
  8. * description.</p>
  9. *
  10. * <p>The second non-template variant of the function fills the matrix
  11. * <code>dst</code> with uniformly-distributed random numbers from the specified
  12. * range:</p>
  13. *
  14. * <p><em>low _c <= dst(I)_c &lt high _c</em></p>
  15. *
  16. * @param dst output array of random numbers; the array must be pre-allocated.
  17. * @param low inclusive lower boundary of the generated random numbers.
  18. * @param high exclusive upper boundary of the generated random numbers.
  19. *
  20. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randu">org.opencv.core.Core.randu</a>
  21. * @see org.opencv.core.Core#randn
  22. */
  23. public static void randu(Mat dst, double low, double high)
  24. {
  25. randu_0(dst.nativeObj, low, high);
  26. return;
  27. }

代码示例来源:origin: abhn/marvel

  1. /**
  2. * <p>Generates a single uniformly-distributed random number or an array of random
  3. * numbers.</p>
  4. *
  5. * <p>The template functions <code>randu</code> generate and return the next
  6. * uniformly-distributed random value of the specified type. <code>randu<int>()</code>
  7. * is an equivalent to <code>(int)theRNG();</code>, and so on. See "RNG"
  8. * description.</p>
  9. *
  10. * <p>The second non-template variant of the function fills the matrix
  11. * <code>dst</code> with uniformly-distributed random numbers from the specified
  12. * range:</p>
  13. *
  14. * <p><em>low _c <= dst(I)_c &lt high _c</em></p>
  15. *
  16. * @param dst output array of random numbers; the array must be pre-allocated.
  17. * @param low inclusive lower boundary of the generated random numbers.
  18. * @param high exclusive upper boundary of the generated random numbers.
  19. *
  20. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randu">org.opencv.core.Core.randu</a>
  21. * @see org.opencv.core.Core#randn
  22. */
  23. public static void randu(Mat dst, double low, double high)
  24. {
  25. randu_0(dst.nativeObj, low, high);
  26. return;
  27. }

代码示例来源:origin: jtsky/EasyPR_Android

  1. /**
  2. * <p>Generates a single uniformly-distributed random number or an array of random
  3. * numbers.</p>
  4. *
  5. * <p>The template functions <code>randu</code> generate and return the next
  6. * uniformly-distributed random value of the specified type. <code>randu<int>()</code>
  7. * is an equivalent to <code>(int)theRNG();</code>, and so on. See "RNG"
  8. * description.</p>
  9. *
  10. * <p>The second non-template variant of the function fills the matrix
  11. * <code>dst</code> with uniformly-distributed random numbers from the specified
  12. * range:</p>
  13. *
  14. * <p><em>low _c <= dst(I)_c &lt high _c</em></p>
  15. *
  16. * @param dst output array of random numbers; the array must be pre-allocated.
  17. * @param low inclusive lower boundary of the generated random numbers.
  18. * @param high exclusive upper boundary of the generated random numbers.
  19. *
  20. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randu">org.opencv.core.Core.randu</a>
  21. * @see org.opencv.core.Core#randn
  22. */
  23. public static void randu(Mat dst, double low, double high)
  24. {
  25. randu_0(dst.nativeObj, low, high);
  26. return;
  27. }

代码示例来源:origin: nu.pattern/opencv

  1. /**
  2. * <p>Generates a single uniformly-distributed random number or an array of random
  3. * numbers.</p>
  4. *
  5. * <p>The template functions <code>randu</code> generate and return the next
  6. * uniformly-distributed random value of the specified type. <code>randu<int>()</code>
  7. * is an equivalent to <code>(int)theRNG();</code>, and so on. See "RNG"
  8. * description.</p>
  9. *
  10. * <p>The second non-template variant of the function fills the matrix
  11. * <code>dst</code> with uniformly-distributed random numbers from the specified
  12. * range:</p>
  13. *
  14. * <p><em>low _c <= dst(I)_c &lt high _c</em></p>
  15. *
  16. * @param dst output array of random numbers; the array must be pre-allocated.
  17. * @param low inclusive lower boundary of the generated random numbers.
  18. * @param high exclusive upper boundary of the generated random numbers.
  19. *
  20. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randu">org.opencv.core.Core.randu</a>
  21. * @see org.opencv.core.Core#randn
  22. */
  23. public static void randu(Mat dst, double low, double high)
  24. {
  25. randu_0(dst.nativeObj, low, high);
  26. return;
  27. }

相关文章

Core类方法