org.opencv.imgproc.Imgproc.createHanningWindow_0()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(8.0k)|赞(0)|评价(0)|浏览(162)

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

Imgproc.createHanningWindow_0介绍

暂无

代码示例

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

代码示例来源:origin: KePeng1019/SmartPaperScan

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

public static void createHanningWindow(Mat dst, Size winSize, int type)
{
  
  createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);
  
  return;
}

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

/**
 * <p>This function computes a Hanning window coefficients in two dimensions. See
 * http://en.wikipedia.org/wiki/Hann_function and http://en.wikipedia.org/wiki/Window_function
 * for more information.</p>
 *
 * <p>An example is shown below: <code></p>
 *
 * <p>// C++ code:</p>
 *
 * <p>// create hanning window of size 100x100 and type CV_32F</p>
 *
 * <p>Mat hann;</p>
 *
 * <p>createHanningWindow(hann, Size(100, 100), CV_32F);</p>
 *
 * @param dst Destination array to place Hann coefficients in
 * @param winSize The window size specifications
 * @param type Created array type
 *
 * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#createhanningwindow">org.opencv.imgproc.Imgproc.createHanningWindow</a>
 * @see org.opencv.imgproc.Imgproc#phaseCorrelate
 */
  public static void createHanningWindow(Mat dst, Size winSize, int type)
  {

    createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);

    return;
  }

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

/**
 * <p>This function computes a Hanning window coefficients in two dimensions. See
 * http://en.wikipedia.org/wiki/Hann_function and http://en.wikipedia.org/wiki/Window_function
 * for more information.</p>
 *
 * <p>An example is shown below: <code></p>
 *
 * <p>// C++ code:</p>
 *
 * <p>// create hanning window of size 100x100 and type CV_32F</p>
 *
 * <p>Mat hann;</p>
 *
 * <p>createHanningWindow(hann, Size(100, 100), CV_32F);</p>
 *
 * @param dst Destination array to place Hann coefficients in
 * @param winSize The window size specifications
 * @param type Created array type
 *
 * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#createhanningwindow">org.opencv.imgproc.Imgproc.createHanningWindow</a>
 * @see org.opencv.imgproc.Imgproc#phaseCorrelate
 */
  public static void createHanningWindow(Mat dst, Size winSize, int type)
  {

    createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);

    return;
  }

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

/**
 * <p>This function computes a Hanning window coefficients in two dimensions. See
 * http://en.wikipedia.org/wiki/Hann_function and http://en.wikipedia.org/wiki/Window_function
 * for more information.</p>
 *
 * <p>An example is shown below: <code></p>
 *
 * <p>// C++ code:</p>
 *
 * <p>// create hanning window of size 100x100 and type CV_32F</p>
 *
 * <p>Mat hann;</p>
 *
 * <p>createHanningWindow(hann, Size(100, 100), CV_32F);</p>
 *
 * @param dst Destination array to place Hann coefficients in
 * @param winSize The window size specifications
 * @param type Created array type
 *
 * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#createhanningwindow">org.opencv.imgproc.Imgproc.createHanningWindow</a>
 * @see org.opencv.imgproc.Imgproc#phaseCorrelate
 */
  public static void createHanningWindow(Mat dst, Size winSize, int type)
  {

    createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);

    return;
  }

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

/**
 * <p>This function computes a Hanning window coefficients in two dimensions. See
 * http://en.wikipedia.org/wiki/Hann_function and http://en.wikipedia.org/wiki/Window_function
 * for more information.</p>
 *
 * <p>An example is shown below: <code></p>
 *
 * <p>// C++ code:</p>
 *
 * <p>// create hanning window of size 100x100 and type CV_32F</p>
 *
 * <p>Mat hann;</p>
 *
 * <p>createHanningWindow(hann, Size(100, 100), CV_32F);</p>
 *
 * @param dst Destination array to place Hann coefficients in
 * @param winSize The window size specifications
 * @param type Created array type
 *
 * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#createhanningwindow">org.opencv.imgproc.Imgproc.createHanningWindow</a>
 * @see org.opencv.imgproc.Imgproc#phaseCorrelate
 */
  public static void createHanningWindow(Mat dst, Size winSize, int type)
  {

    createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);

    return;
  }

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

/**
 * <p>This function computes a Hanning window coefficients in two dimensions. See
 * http://en.wikipedia.org/wiki/Hann_function and http://en.wikipedia.org/wiki/Window_function
 * for more information.</p>
 *
 * <p>An example is shown below: <code></p>
 *
 * <p>// C++ code:</p>
 *
 * <p>// create hanning window of size 100x100 and type CV_32F</p>
 *
 * <p>Mat hann;</p>
 *
 * <p>createHanningWindow(hann, Size(100, 100), CV_32F);</p>
 *
 * @param dst Destination array to place Hann coefficients in
 * @param winSize The window size specifications
 * @param type Created array type
 *
 * @see <a href="http://docs.opencv.org/modules/imgproc/doc/motion_analysis_and_object_tracking.html#createhanningwindow">org.opencv.imgproc.Imgproc.createHanningWindow</a>
 * @see org.opencv.imgproc.Imgproc#phaseCorrelate
 */
  public static void createHanningWindow(Mat dst, Size winSize, int type)
  {

    createHanningWindow_0(dst.nativeObj, winSize.width, winSize.height, type);

    return;
  }

相关文章

微信公众号

最新文章

更多

Imgproc类方法