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

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

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

Imgproc.floodFill_1介绍

暂无

代码示例

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal, Rect rect, Scalar loDiff, Scalar upDiff)
{
  double[] rect_out = new double[4];
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3], rect_out, loDiff.val[0], loDiff.val[1], loDiff.val[2], loDiff.val[3], upDiff.val[0], upDiff.val[1], upDiff.val[2], upDiff.val[3]);
  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: ctodobom/OpenCV-3.1.0-Android

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal, Rect rect, Scalar loDiff, Scalar upDiff)
{
  double[] rect_out = new double[4];
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3], rect_out, loDiff.val[0], loDiff.val[1], loDiff.val[2], loDiff.val[3], upDiff.val[0], upDiff.val[1], upDiff.val[2], upDiff.val[3]);
  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: imistyrain/EasyPR4Android

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

public static int floodFill(Mat image, Mat mask, Point seedPoint, Scalar newVal)
{
  
  int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);
  
  return retVal;
}

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

int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);

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

int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);

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

int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);

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

int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);

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

int retVal = floodFill_1(image.nativeObj, mask.nativeObj, seedPoint.x, seedPoint.y, newVal.val[0], newVal.val[1], newVal.val[2], newVal.val[3]);

相关文章

微信公众号

最新文章

更多

Imgproc类方法