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

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

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

Core.randn_0介绍

暂无

代码示例

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

public static void randn(Mat dst, double mean, double stddev)
{
  
  randn_0(dst.nativeObj, mean, stddev);
  
  return;
}

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

/**
 * <p>Fills the array with normally distributed random numbers.</p>
 *
 * <p>The function <code>randn</code> fills the matrix <code>dst</code> with
 * normally distributed random numbers with the specified mean vector and the
 * standard deviation matrix. The generated random numbers are clipped to fit
 * the value range of the output array data type.</p>
 *
 * @param dst output array of random numbers; the array must be pre-allocated
 * and have 1 to 4 channels.
 * @param mean mean value (expectation) of the generated random numbers.
 * @param stddev standard deviation of the generated random numbers; it can be
 * either a vector (in which case a diagonal standard deviation matrix is
 * assumed) or a square matrix.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randn">org.opencv.core.Core.randn</a>
 * @see org.opencv.core.Core#randu
 */
  public static void randn(Mat dst, double mean, double stddev)
  {

    randn_0(dst.nativeObj, mean, stddev);

    return;
  }

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

/**
 * <p>Fills the array with normally distributed random numbers.</p>
 *
 * <p>The function <code>randn</code> fills the matrix <code>dst</code> with
 * normally distributed random numbers with the specified mean vector and the
 * standard deviation matrix. The generated random numbers are clipped to fit
 * the value range of the output array data type.</p>
 *
 * @param dst output array of random numbers; the array must be pre-allocated
 * and have 1 to 4 channels.
 * @param mean mean value (expectation) of the generated random numbers.
 * @param stddev standard deviation of the generated random numbers; it can be
 * either a vector (in which case a diagonal standard deviation matrix is
 * assumed) or a square matrix.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randn">org.opencv.core.Core.randn</a>
 * @see org.opencv.core.Core#randu
 */
  public static void randn(Mat dst, double mean, double stddev)
  {

    randn_0(dst.nativeObj, mean, stddev);

    return;
  }

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

/**
 * <p>Fills the array with normally distributed random numbers.</p>
 *
 * <p>The function <code>randn</code> fills the matrix <code>dst</code> with
 * normally distributed random numbers with the specified mean vector and the
 * standard deviation matrix. The generated random numbers are clipped to fit
 * the value range of the output array data type.</p>
 *
 * @param dst output array of random numbers; the array must be pre-allocated
 * and have 1 to 4 channels.
 * @param mean mean value (expectation) of the generated random numbers.
 * @param stddev standard deviation of the generated random numbers; it can be
 * either a vector (in which case a diagonal standard deviation matrix is
 * assumed) or a square matrix.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randn">org.opencv.core.Core.randn</a>
 * @see org.opencv.core.Core#randu
 */
  public static void randn(Mat dst, double mean, double stddev)
  {

    randn_0(dst.nativeObj, mean, stddev);

    return;
  }

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

/**
 * <p>Fills the array with normally distributed random numbers.</p>
 *
 * <p>The function <code>randn</code> fills the matrix <code>dst</code> with
 * normally distributed random numbers with the specified mean vector and the
 * standard deviation matrix. The generated random numbers are clipped to fit
 * the value range of the output array data type.</p>
 *
 * @param dst output array of random numbers; the array must be pre-allocated
 * and have 1 to 4 channels.
 * @param mean mean value (expectation) of the generated random numbers.
 * @param stddev standard deviation of the generated random numbers; it can be
 * either a vector (in which case a diagonal standard deviation matrix is
 * assumed) or a square matrix.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randn">org.opencv.core.Core.randn</a>
 * @see org.opencv.core.Core#randu
 */
  public static void randn(Mat dst, double mean, double stddev)
  {

    randn_0(dst.nativeObj, mean, stddev);

    return;
  }

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

/**
 * <p>Fills the array with normally distributed random numbers.</p>
 *
 * <p>The function <code>randn</code> fills the matrix <code>dst</code> with
 * normally distributed random numbers with the specified mean vector and the
 * standard deviation matrix. The generated random numbers are clipped to fit
 * the value range of the output array data type.</p>
 *
 * @param dst output array of random numbers; the array must be pre-allocated
 * and have 1 to 4 channels.
 * @param mean mean value (expectation) of the generated random numbers.
 * @param stddev standard deviation of the generated random numbers; it can be
 * either a vector (in which case a diagonal standard deviation matrix is
 * assumed) or a square matrix.
 *
 * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#randn">org.opencv.core.Core.randn</a>
 * @see org.opencv.core.Core#randu
 */
  public static void randn(Mat dst, double mean, double stddev)
  {

    randn_0(dst.nativeObj, mean, stddev);

    return;
  }

相关文章

Core类方法