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

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

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

Imgproc.pyrUp_2介绍

暂无

代码示例

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

public static void pyrUp(Mat src, Mat dst)
{
  
  pyrUp_2(src.nativeObj, dst.nativeObj);
  
  return;
}

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

/**
 * <p>Upsamples an image and then blurs it.</p>
 *
 * <p>The function performs the upsampling step of the Gaussian pyramid
 * construction, though it can actually be used to construct the Laplacian
 * pyramid. First, it upsamples the source image by injecting even zero rows and
 * columns and then convolves the result with the same kernel as in "pyrDown"
 * multiplied by 4.</p>
 *
 * <p>Note:</p>
 * <ul>
 *   <li> (Python) An example of Laplacian Pyramid construction and merging can
 * be found at opencv_source_code/samples/python2/lappyr.py
 * </ul>
 *
 * @param src input image.
 * @param dst output image. It has the specified size and the same type as
 * <code>src</code>.
 *
 * @see <a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html#pyrup">org.opencv.imgproc.Imgproc.pyrUp</a>
 */
  public static void pyrUp(Mat src, Mat dst)
  {

    pyrUp_2(src.nativeObj, dst.nativeObj);

    return;
  }

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

/**
 * <p>Upsamples an image and then blurs it.</p>
 *
 * <p>The function performs the upsampling step of the Gaussian pyramid
 * construction, though it can actually be used to construct the Laplacian
 * pyramid. First, it upsamples the source image by injecting even zero rows and
 * columns and then convolves the result with the same kernel as in "pyrDown"
 * multiplied by 4.</p>
 *
 * <p>Note:</p>
 * <ul>
 *   <li> (Python) An example of Laplacian Pyramid construction and merging can
 * be found at opencv_source_code/samples/python2/lappyr.py
 * </ul>
 *
 * @param src input image.
 * @param dst output image. It has the specified size and the same type as
 * <code>src</code>.
 *
 * @see <a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html#pyrup">org.opencv.imgproc.Imgproc.pyrUp</a>
 */
  public static void pyrUp(Mat src, Mat dst)
  {

    pyrUp_2(src.nativeObj, dst.nativeObj);

    return;
  }

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

pyrUp_2(src.nativeObj, dst.nativeObj);

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

pyrUp_2(src.nativeObj, dst.nativeObj);

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

pyrUp_2(src.nativeObj, dst.nativeObj);

相关文章

微信公众号

最新文章

更多

Imgproc类方法