本文整理了Java中org.opencv.imgproc.Imgproc.medianBlur_0()
方法的一些代码示例,展示了Imgproc.medianBlur_0()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Imgproc.medianBlur_0()
方法的具体详情如下:
包路径:org.opencv.imgproc.Imgproc
类名称:Imgproc
方法名:medianBlur_0
暂无
代码示例来源:origin: kongqw/OpenCVForAndroid
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: tz28/Chinese-number-gestures-recognition
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: SouvDc/face-detection
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: leadrien/opencv_native_androidstudio
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: imistyrain/EasyPR4Android
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: SOFTPOWER1991/OpenCVCheck
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: farkam135/GoIV
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: nroduit/Weasis
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: ctodobom/OpenCV-3.1.0-Android
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: raulh82vlc/Image-Detection-Samples
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: DuckDeck/AndroidDemo
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: akshika47/OpencvAndroid
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: KePeng1019/SmartPaperScan
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: InnoFang/Android-Code-Demos
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: hschott/Camdroid
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: com.sikulix/sikulixapi
/**
* <p>Blurs an image using the median filter.</p>
*
* <p>The function smoothes an image using the median filter with the <em>ksize x
* ksize</em> aperture. Each channel of a multi-channel image is processed
* independently. In-place operation is supported.</p>
*
* @param src input 1-, 3-, or 4-channel image; when <code>ksize</code> is 3 or
* 5, the image depth should be <code>CV_8U</code>, <code>CV_16U</code>, or
* <code>CV_32F</code>, for larger aperture sizes, it can only be
* <code>CV_8U</code>.
* @param dst destination array of the same size and type as <code>src</code>.
* @param ksize aperture linear size; it must be odd and greater than 1, for
* example: 3, 5, 7...
*
* @see <a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html#medianblur">org.opencv.imgproc.Imgproc.medianBlur</a>
* @see org.opencv.imgproc.Imgproc#boxFilter
* @see org.opencv.imgproc.Imgproc#GaussianBlur
* @see org.opencv.imgproc.Imgproc#bilateralFilter
* @see org.opencv.imgproc.Imgproc#blur
*/
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: abhn/marvel
/**
* <p>Blurs an image using the median filter.</p>
*
* <p>The function smoothes an image using the median filter with the <em>ksize x
* ksize</em> aperture. Each channel of a multi-channel image is processed
* independently. In-place operation is supported.</p>
*
* @param src input 1-, 3-, or 4-channel image; when <code>ksize</code> is 3 or
* 5, the image depth should be <code>CV_8U</code>, <code>CV_16U</code>, or
* <code>CV_32F</code>, for larger aperture sizes, it can only be
* <code>CV_8U</code>.
* @param dst destination array of the same size and type as <code>src</code>.
* @param ksize aperture linear size; it must be odd and greater than 1, for
* example: 3, 5, 7...
*
* @see <a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html#medianblur">org.opencv.imgproc.Imgproc.medianBlur</a>
* @see org.opencv.imgproc.Imgproc#boxFilter
* @see org.opencv.imgproc.Imgproc#GaussianBlur
* @see org.opencv.imgproc.Imgproc#bilateralFilter
* @see org.opencv.imgproc.Imgproc#blur
*/
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: ytai/IOIOPlotter
/**
* <p>Blurs an image using the median filter.</p>
*
* <p>The function smoothes an image using the median filter with the <em>ksize x
* ksize</em> aperture. Each channel of a multi-channel image is processed
* independently. In-place operation is supported.</p>
*
* @param src input 1-, 3-, or 4-channel image; when <code>ksize</code> is 3 or
* 5, the image depth should be <code>CV_8U</code>, <code>CV_16U</code>, or
* <code>CV_32F</code>, for larger aperture sizes, it can only be
* <code>CV_8U</code>.
* @param dst destination array of the same size and type as <code>src</code>.
* @param ksize aperture linear size; it must be odd and greater than 1, for
* example: 3, 5, 7...
*
* @see <a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html#medianblur">org.opencv.imgproc.Imgproc.medianBlur</a>
* @see org.opencv.imgproc.Imgproc#boxFilter
* @see org.opencv.imgproc.Imgproc#GaussianBlur
* @see org.opencv.imgproc.Imgproc#bilateralFilter
* @see org.opencv.imgproc.Imgproc#blur
*/
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: nu.pattern/opencv
/**
* <p>Blurs an image using the median filter.</p>
*
* <p>The function smoothes an image using the median filter with the <em>ksize x
* ksize</em> aperture. Each channel of a multi-channel image is processed
* independently. In-place operation is supported.</p>
*
* @param src input 1-, 3-, or 4-channel image; when <code>ksize</code> is 3 or
* 5, the image depth should be <code>CV_8U</code>, <code>CV_16U</code>, or
* <code>CV_32F</code>, for larger aperture sizes, it can only be
* <code>CV_8U</code>.
* @param dst destination array of the same size and type as <code>src</code>.
* @param ksize aperture linear size; it must be odd and greater than 1, for
* example: 3, 5, 7...
*
* @see <a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html#medianblur">org.opencv.imgproc.Imgproc.medianBlur</a>
* @see org.opencv.imgproc.Imgproc#boxFilter
* @see org.opencv.imgproc.Imgproc#GaussianBlur
* @see org.opencv.imgproc.Imgproc#bilateralFilter
* @see org.opencv.imgproc.Imgproc#blur
*/
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
代码示例来源:origin: jtsky/EasyPR_Android
/**
* <p>Blurs an image using the median filter.</p>
*
* <p>The function smoothes an image using the median filter with the <em>ksize x
* ksize</em> aperture. Each channel of a multi-channel image is processed
* independently. In-place operation is supported.</p>
*
* @param src input 1-, 3-, or 4-channel image; when <code>ksize</code> is 3 or
* 5, the image depth should be <code>CV_8U</code>, <code>CV_16U</code>, or
* <code>CV_32F</code>, for larger aperture sizes, it can only be
* <code>CV_8U</code>.
* @param dst destination array of the same size and type as <code>src</code>.
* @param ksize aperture linear size; it must be odd and greater than 1, for
* example: 3, 5, 7...
*
* @see <a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html#medianblur">org.opencv.imgproc.Imgproc.medianBlur</a>
* @see org.opencv.imgproc.Imgproc#boxFilter
* @see org.opencv.imgproc.Imgproc#GaussianBlur
* @see org.opencv.imgproc.Imgproc#bilateralFilter
* @see org.opencv.imgproc.Imgproc#blur
*/
public static void medianBlur(Mat src, Mat dst, int ksize)
{
medianBlur_0(src.nativeObj, dst.nativeObj, ksize);
return;
}
内容来源于网络,如有侵权,请联系作者删除!