本文整理了Java中org.opencv.imgproc.Imgproc.floodFill_3()
方法的一些代码示例,展示了Imgproc.floodFill_3()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Imgproc.floodFill_3()
方法的具体详情如下:
包路径:org.opencv.imgproc.Imgproc
类名称:Imgproc
方法名:floodFill_3
暂无
代码示例来源:origin: DuckDeck/AndroidDemo
public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal, Rect rect)
{
double[] rect_out = new double[4];
int retVal = floodFill_3(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3], rect_out);
if(rect!=null){ rect.x = (int)rect_out[0]; rect.y = (int)rect_out[1]; rect.width = (int)rect_out[2]; rect.height = (int)rect_out[3]; }
return retVal;
}
代码示例来源:origin: nroduit/Weasis
public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal, Rect rect)
{
double[] rect_out = new double[4];
int retVal = floodFill_3(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3], rect_out);
if(rect!=null){ rect.x = (int)rect_out[0]; rect.y = (int)rect_out[1]; rect.width = (int)rect_out[2]; rect.height = (int)rect_out[3]; }
return retVal;
}
内容来源于网络,如有侵权,请联系作者删除!